From 25ec229f45bfb12ba8ab7b80b4867024fa19b961 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Mon, 21 Sep 2015 11:30:25 -0400 Subject: [PATCH] Bug 11622 [QA Followup] - Payment message always displays on opac-account.pl Signed-off-by: Jonathan Druart --- opac/opac-account.pl | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/opac/opac-account.pl b/opac/opac-account.pl index 57cbf97..a02446b 100755 --- a/opac/opac-account.pl +++ b/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, undef, { force_no_caching => 1 }; -- 1.7.2.5