Bugzilla – Attachment 50335 Details for
Bug 9393
Add note to circulation.pl if borrower has pending modifications
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 9393 [QA Followup] - Change calls of Koha::Borrower::Modifications to Koha::Patron::Modifications
Bug-9393-QA-Followup---Change-calls-of-KohaBorrowe.patch (text/plain), 2.19 KB, created by
Kyle M Hall (khall)
on 2016-04-18 15:04:06 UTC
(
hide
)
Description:
Bug 9393 [QA Followup] - Change calls of Koha::Borrower::Modifications to Koha::Patron::Modifications
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2016-04-18 15:04:06 UTC
Size:
2.19 KB
patch
obsolete
>From 82c1626a5e904eef10dfa097936c565d01f99ba9 Mon Sep 17 00:00:00 2001 >From: Kyle M Hall <kyle@bywatersolutions.com> >Date: Mon, 18 Apr 2016 15:02:59 +0000 >Subject: [PATCH] Bug 9393 [QA Followup] - Change calls of > Koha::Borrower::Modifications to Koha::Patron::Modifications > >--- > circ/circulation.pl | 4 ++-- > koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt | 2 +- > 2 files changed, 3 insertions(+), 3 deletions(-) > >diff --git a/circ/circulation.pl b/circ/circulation.pl >index 8c94a98..1ff081a 100755 >--- a/circ/circulation.pl >+++ b/circ/circulation.pl >@@ -49,7 +49,7 @@ use Koha::DateUtils; > use Koha::Database; > use Koha::Patron::Messages; > use Koha::Patron::Images; >-use Koha::Borrower::Modifications; >+use Koha::Patron::Modifications; > > use Date::Calc qw( > Today >@@ -661,7 +661,7 @@ $template->param( > canned_bor_notes_loop => $canned_notes, > debarments => GetDebarments({ borrowernumber => $borrowernumber }), > todaysdate => output_pref( { dt => dt_from_string()->set(hour => 23)->set(minute => 59), dateformat => 'sql' } ), >- borrower_modifications => Koha::Borrower::Modifications->GetModifications({ borrowernumber => $borrowernumber }), >+ modifications => Koha::Patron::Modifications->GetModifications({ borrowernumber => $borrowernumber }), > ); > > output_html_with_http_headers $query, $cookie, $template->output; >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt >index 716db30..b4ed6eb 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt >@@ -730,7 +730,7 @@ No patron matched <span class="ex">[% message %]</span> > > <ul> > >- [% IF ( borrower_modifications ) %] >+ [% IF ( modifications ) %] > <li><span class="circ-hlt">Pending modifications:</span> Patron has pending modifications. > [% IF ( CAN_user_borrowers ) %] > <a href="/cgi-bin/koha/members/members-update.pl">View all pending patron modifications</a> >-- >2.1.4
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 9393
:
14594
|
14595
|
28913
|
50328
|
50329
|
50335
|
50339
|
50384
|
50397
|
50451
|
50452