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

(-)a/opac/opac-account.pl (-2 / +1 lines)
Lines 74-78 $template->param ( Link Here
74
	accountview => 1
74
	accountview => 1
75
);
75
);
76
76
77
output_html_with_http_headers $query, $cookie, $template->output;
77
output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };
78
(-)a/opac/opac-basket.pl (-1 / +1 lines)
Lines 135-138 $template->param( Link Here
135
    BIBLIO_RESULTS => $resultsarray,
135
    BIBLIO_RESULTS => $resultsarray,
136
);
136
);
137
137
138
output_html_with_http_headers $query, $cookie, $template->output;
138
output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };
(-)a/opac/opac-browser.pl (-1 / +1 lines)
Lines 101-104 $template->param( Link Here
101
    have_hierarchy => $have_hierarchy,
101
    have_hierarchy => $have_hierarchy,
102
);
102
);
103
103
104
output_html_with_http_headers $query, $cookie, $template->output;
104
output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };
(-)a/opac/opac-discharge.pl (-1 / +1 lines)
Lines 99-102 else { Link Here
99
99
100
$template->param( dischargeview => 1 );
100
$template->param( dischargeview => 1 );
101
101
102
output_html_with_http_headers $input, $cookie, $template->output;
102
output_html_with_http_headers $input, $cookie, $template->output, undef, { force_no_caching => 1 };
(-)a/opac/opac-memberentry.pl (-1 / +1 lines)
Lines 244-250 $template->param( Link Here
244
    captcha_digest => md5_base64($captcha)
244
    captcha_digest => md5_base64($captcha)
245
);
245
);
246
246
247
output_html_with_http_headers $cgi, $cookie, $template->output;
247
output_html_with_http_headers $cgi, $cookie, $template->output, undef, { force_no_caching => 1 };
248
248
249
sub GetHiddenFields {
249
sub GetHiddenFields {
250
    my ($mandatory) = @_;
250
    my ($mandatory) = @_;
(-)a/opac/opac-mymessages.pl (-1 / +1 lines)
Lines 47-50 my $messages = C4::Letters::GetRSSMessages( { borrowernumber => $borrowernumber, Link Here
47
$template->param( message_list => $messages,
47
$template->param( message_list => $messages,
48
             );
48
             );
49
49
50
output_html_with_http_headers $query, $cookie, $template->output;
50
output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };
(-)a/opac/opac-passwd.pl (-1 / +1 lines)
Lines 110-116 $template->param(firstname => $borr->{'firstname'}, Link Here
110
							passwdview => 1,
110
							passwdview => 1,
111
);
111
);
112
112
113
output_html_with_http_headers $query, $cookie, $template->output;
113
output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };
114
114
115
sub goodkey {
115
sub goodkey {
116
    my ( $dbh, $borrowernumber, $key ) = @_;
116
    my ( $dbh, $borrowernumber, $key ) = @_;
(-)a/opac/opac-privacy.pl (-1 / +1 lines)
Lines 75-78 $template->param( 'Ask_data' => '1', Link Here
75
                    'privacyview' => 1,
75
                    'privacyview' => 1,
76
);
76
);
77
77
78
output_html_with_http_headers $query, $cookie, $template->output;
78
output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };
(-)a/opac/opac-reserve.pl (-2 / +1 lines)
Lines 584-588 if ( Link Here
584
    );
584
    );
585
}
585
}
586
586
587
output_html_with_http_headers $query, $cookie, $template->output;
587
output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };
588
(-)a/opac/opac-search-history.pl (-1 / +1 lines)
Lines 158-161 unless ( $loggedinuser ) { Link Here
158
158
159
$template->param(searchhistoryview => 1);
159
$template->param(searchhistoryview => 1);
160
160
161
output_html_with_http_headers $cgi, $cookie, $template->output;
161
output_html_with_http_headers $cgi, $cookie, $template->output, undef, { force_no_caching => 1 };
(-)a/opac/opac-user.pl (-3 / +1 lines)
Lines 398-402 $template->param( Link Here
398
    OpacHoldNotes => C4::Context->preference('OpacHoldNotes'),
398
    OpacHoldNotes => C4::Context->preference('OpacHoldNotes'),
399
);
399
);
400
400
401
output_html_with_http_headers $query, $cookie, $template->output;
401
output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };
402
403
- 

Return to bug 5371