Bugzilla – Attachment 41005 Details for
Bug 14534
Stop overdue_notices.pl from issuing the warning: Use of uninitialized value $borrowernumber
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 14534: Stop overdue_notices.pl from issuing the warning: Use of uninitialized value $borrowernumber
0001-Bug-14534-Stop-overdue_notices.pl-from-issuing-the-w.patch (text/plain), 1006 bytes, created by
Ulrich Kleiber
on 2015-07-15 06:46:45 UTC
(
hide
)
Description:
Bug 14534: Stop overdue_notices.pl from issuing the warning: Use of uninitialized value $borrowernumber
Filename:
MIME Type:
Creator:
Ulrich Kleiber
Created:
2015-07-15 06:46:45 UTC
Size:
1006 bytes
patch
obsolete
>From 74c39f4347535c22c2cb5367118c84320584e59a Mon Sep 17 00:00:00 2001 >From: Ulrich Kleiber <ulrich.kleiber@bsz-bw.de> >Date: Wed, 15 Jul 2015 08:35:13 +0200 >Subject: [PATCH] Bug 14534: Stop overdue_notices.pl from issuing the warning: Use of uninitialized value $borrowernumber > >--- > misc/cronjobs/overdue_notices.pl | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > >diff --git a/misc/cronjobs/overdue_notices.pl b/misc/cronjobs/overdue_notices.pl >index 6e30fa2..8f292fa 100755 >--- a/misc/cronjobs/overdue_notices.pl >+++ b/misc/cronjobs/overdue_notices.pl >@@ -555,7 +555,7 @@ END_SQL > next; > } > } >- if ($borrowernumber eq $data->{'borrowernumber'}){ >+ if (defined $borrowernumber && $borrowernumber eq $data->{'borrowernumber'}){ > # we have already dealt with this borrower > $verbose and warn "already dealt with this borrower $borrowernumber"; > next; >-- >1.7.2.5 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 14534
:
41005
|
41094
|
41374