Bugzilla – Attachment 7817 Details for
Bug 7453
Borrower without expiry date breaks opac login
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Followup to check dateexpiry
patch.txt (text/plain), 1.21 KB, created by
Marcel de Rooy
on 2012-02-23 09:00:33 UTC
(
hide
)
Description:
Followup to check dateexpiry
Filename:
MIME Type:
Creator:
Marcel de Rooy
Created:
2012-02-23 09:00:33 UTC
Size:
1.21 KB
patch
obsolete
>From 5b03647103b6c2f39f3a5fb987b5f69a72118248 Mon Sep 17 00:00:00 2001 >From: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> >Date: Thu, 23 Feb 2012 09:46:32 +0100 >Subject: [PATCH] 7453 Followup for borrower without expiry date >Content-Type: text/plain; charset="utf-8" > >While it should be impossible now to have a patron without expiry date, I still had one. It does not hurt to add a simple check on expiry date defined before calling delta days on null values and breaking the opac login. >Trivial change. > >Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> >--- > opac/opac-user.pl | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > >diff --git a/opac/opac-user.pl b/opac/opac-user.pl >index ff1fecf..a88bffb 100755 >--- a/opac/opac-user.pl >+++ b/opac/opac-user.pl >@@ -124,7 +124,7 @@ my @bordat; > $bordat[0] = $borr; > > # Warningdate is the date that the warning starts appearing >-if ( C4::Context->preference('NotifyBorrowerDeparture') && >+if ( $borr->{dateexpiry} && C4::Context->preference('NotifyBorrowerDeparture') && > Date_to_Days(Add_Delta_Days($warning_year,$warning_month,$warning_day,- C4::Context->preference('NotifyBorrowerDeparture'))) < > Date_to_Days( $today_year, $today_month, $today_day ) ) > { >-- >1.6.0.6 >
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 7453
:
7252
|
7358
|
7817
|
7845