|
Lines 189-194
Output.pm module.
Link Here
|
| 189 |
=cut |
189 |
=cut |
| 190 |
|
190 |
|
| 191 |
sub get_template_and_user { |
191 |
sub get_template_and_user { |
|
|
192 |
my $start_time = dt_from_string; |
| 192 |
|
193 |
|
| 193 |
my $in = shift; |
194 |
my $in = shift; |
| 194 |
my ( $user, $cookie, $sessionID, $flags ); |
195 |
my ( $user, $cookie, $sessionID, $flags ); |
|
Lines 692-697
sub get_template_and_user {
Link Here
|
| 692 |
$template->param( logged_in_user => $patron ); |
693 |
$template->param( logged_in_user => $patron ); |
| 693 |
$template->param( sessionID => $sessionID ); |
694 |
$template->param( sessionID => $sessionID ); |
| 694 |
|
695 |
|
|
|
696 |
$template->param( start_time => $start_time ); |
| 697 |
|
| 695 |
return ( $template, $borrowernumber, $cookie, $flags ); |
698 |
return ( $template, $borrowernumber, $cookie, $flags ); |
| 696 |
} |
699 |
} |
| 697 |
|
700 |
|