View | Details | Raw Unified | Return to bug 22739
Collapse All | Expand All

(-)a/opac/sci/sci-main.pl (-2 / +1 lines)
Lines 94-100 if ( $op eq 'check_in' ) { Link Here
94
}
94
}
95
95
96
# Make sure timeout has a reasonable value
96
# Make sure timeout has a reasonable value
97
my $timeout = C4::Context->preference('SelfCheckInTimeout') // 120;
97
my $timeout = C4::Context->preference('SelfCheckInTimeout') || 120;
98
$template->param( refresh_timeout => $timeout );
98
$template->param( refresh_timeout => $timeout );
99
99
100
output_html_with_http_headers $cgi, $cookie, $template->output, undef, { force_no_caching => 1 };
100
output_html_with_http_headers $cgi, $cookie, $template->output, undef, { force_no_caching => 1 };
101
- 

Return to bug 22739