View | Details | Raw Unified | Return to bug 12568
Collapse All | Expand All

(-)a/opac/opac-renew.pl (-1 / +1 lines)
Lines 90-96 else { Link Here
90
            $errorstring .= $error . "|";
90
            $errorstring .= $error . "|";
91
        }
91
        }
92
    }
92
    }
93
    $renewed = join( '|', @renewed );
93
    $renewed = join( ':', @renewed );
94
}
94
}
95
95
96
print $query->redirect("/cgi-bin/koha/opac-user.pl?renew_error=$errorstring&renewed=$renewed");
96
print $query->redirect("/cgi-bin/koha/opac-user.pl?renew_error=$errorstring&renewed=$renewed");
(-)a/opac/opac-user.pl (-2 / +1 lines)
Lines 64-70 my ( $template, $borrowernumber, $cookie ) = get_template_and_user( Link Here
64
    }
64
    }
65
);
65
);
66
66
67
my %renewed = map { $_ => 1 } split( '|', $query->param('renewed') );
67
my %renewed = map { $_ => 1 } split( ':', $query->param('renewed') );
68
68
69
my $show_priority;
69
my $show_priority;
70
for ( C4::Context->preference("OPACShowHoldQueueDetails") ) {
70
for ( C4::Context->preference("OPACShowHoldQueueDetails") ) {
71
- 

Return to bug 12568