|
Lines 165-170
Output.pm module.
Link Here
|
| 165 |
=cut |
165 |
=cut |
| 166 |
|
166 |
|
| 167 |
sub get_template_and_user { |
167 |
sub get_template_and_user { |
|
|
168 |
my $start_time = dt_from_string; |
| 168 |
|
169 |
|
| 169 |
my $in = shift; |
170 |
my $in = shift; |
| 170 |
my ( $user, $cookie, $sessionID, $flags ); |
171 |
my ( $user, $cookie, $sessionID, $flags ); |
|
Lines 660-665
sub get_template_and_user {
Link Here
|
| 660 |
$template->param( logged_in_user => $patron ); |
661 |
$template->param( logged_in_user => $patron ); |
| 661 |
$template->param( sessionID => $sessionID ); |
662 |
$template->param( sessionID => $sessionID ); |
| 662 |
|
663 |
|
|
|
664 |
$template->param( start_time => $start_time ); |
| 665 |
|
| 663 |
return ( $template, $borrowernumber, $cookie, $flags ); |
666 |
return ( $template, $borrowernumber, $cookie, $flags ); |
| 664 |
} |
667 |
} |
| 665 |
|
668 |
|