Bugzilla – Attachment 30085 Details for
Bug 12568
Improve visibility of successful renewal via opac
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 12568 [QA Followup] - Use ':' as separator instead of '|'
Bug-12568-QA-Followup---Use--as-separator-instead-.patch (text/plain), 1.19 KB, created by
Kyle M Hall (khall)
on 2014-07-25 11:53:55 UTC
(
hide
)
Description:
Bug 12568 [QA Followup] - Use ':' as separator instead of '|'
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2014-07-25 11:53:55 UTC
Size:
1.19 KB
patch
obsolete
>From 88efa7469128eb16b894f9f82cdb2b82fe7f574c Mon Sep 17 00:00:00 2001 >From: Kyle M Hall <kyle@bywatersolutions.com> >Date: Fri, 25 Jul 2014 07:53:40 -0400 >Subject: [PATCH] Bug 12568 [QA Followup] - Use ':' as separator instead of '|' > >--- > opac/opac-renew.pl | 2 +- > opac/opac-user.pl | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > >diff --git a/opac/opac-renew.pl b/opac/opac-renew.pl >index 7b59f47..40a07e5 100755 >--- a/opac/opac-renew.pl >+++ b/opac/opac-renew.pl >@@ -90,7 +90,7 @@ else { > $errorstring .= $error . "|"; > } > } >- $renewed = join( '|', @renewed ); >+ $renewed = join( ':', @renewed ); > } > > print $query->redirect("/cgi-bin/koha/opac-user.pl?renew_error=$errorstring&renewed=$renewed"); >diff --git a/opac/opac-user.pl b/opac/opac-user.pl >index fdf4054..61b88ae 100755 >--- a/opac/opac-user.pl >+++ b/opac/opac-user.pl >@@ -64,7 +64,7 @@ my ( $template, $borrowernumber, $cookie ) = get_template_and_user( > } > ); > >-my %renewed = map { $_ => 1 } split( '|', $query->param('renewed') ); >+my %renewed = map { $_ => 1 } split( ':', $query->param('renewed') ); > > my $show_priority; > for ( C4::Context->preference("OPACShowHoldQueueDetails") ) { >-- >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 12568
:
29674
|
29926
|
30008
|
30085
|
30181
|
30182