|
Lines 205-210
my $csrf_token = Koha::Token->new->generate_csrf({
Link Here
|
| 205 |
session_id => scalar $input->cookie('CGISESSID'), |
205 |
session_id => scalar $input->cookie('CGISESSID'), |
| 206 |
}); |
206 |
}); |
| 207 |
|
207 |
|
|
|
208 |
warn 'LUCASTEST' . Data::Dumper::Dumper( $logged_in_user ); |
| 208 |
$template->param( |
209 |
$template->param( |
| 209 |
patron => $patron, |
210 |
patron => $patron, |
| 210 |
finesview => 1, |
211 |
finesview => 1, |
|
Lines 215-220
$template->param(
Link Here
|
| 215 |
change_given => $change_given, |
216 |
change_given => $change_given, |
| 216 |
renew_results => $renew_results_display, |
217 |
renew_results => $renew_results_display, |
| 217 |
csrf_token => $csrf_token, |
218 |
csrf_token => $csrf_token, |
|
|
219 |
loggedinuser => $logged_in_user->unblessed, |
| 218 |
); |
220 |
); |
| 219 |
|
221 |
|
| 220 |
output_html_with_http_headers $input, $cookie, $template->output; |
222 |
output_html_with_http_headers $input, $cookie, $template->output; |
| 221 |
- |
|
|