@@ -, +, @@ --- opac/opac-account.pl | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) --- a/opac/opac-account.pl +++ a/opac/opac-account.pl @@ -73,8 +73,8 @@ $template->param( accountview => 1, message => $query->param('message') || q{}, message_value => $query->param('message_value') || q{}, - payment => $query->param('payment'), - payment_error => $query->param('payment-error'), + payment => $query->param('payment') || q{}, + payment_error => $query->param('payment-error') || q{}, ); output_html_with_http_headers $query, $cookie, $template->output; --