From f804aecaabbee3413dc672e61a0474056e1f254c Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Fri, 25 Jul 2014 07:53:40 -0400 Subject: [PATCH] Bug 12568 [QA Followup] - Use ':' as separator instead of '|' Signed-off-by: Katrin Fischer Signed-off-by: Chris Cormack Signed-off-by: Tomas Cohen Arazi --- 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 7b59f4752b..40a07e5746 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 fdf4054b36..61b88aeb49 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") ) { -- 2.20.1