Lines 73-80
$template->param(
Link Here
|
73 |
accountview => 1, |
73 |
accountview => 1, |
74 |
message => $query->param('message') || q{}, |
74 |
message => $query->param('message') || q{}, |
75 |
message_value => $query->param('message_value') || q{}, |
75 |
message_value => $query->param('message_value') || q{}, |
76 |
payment => $query->param('payment'), |
76 |
payment => $query->param('payment') || q{}, |
77 |
payment_error => $query->param('payment-error'), |
77 |
payment_error => $query->param('payment-error') || q{}, |
78 |
); |
78 |
); |
79 |
|
79 |
|
80 |
output_html_with_http_headers $query, $cookie, $template->output; |
80 |
output_html_with_http_headers $query, $cookie, $template->output; |
81 |
- |
|
|