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 $query, $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 104-110 $template->param(firstname => $borr->{'firstname'}, Link Here
104
							passwdview => 1,
104
							passwdview => 1,
105
);
105
);
106
106
107
output_html_with_http_headers $query, $cookie, $template->output;
107
output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };
108
108
109
sub goodkey {
109
sub goodkey {
110
    my ( $dbh, $borrowernumber, $key ) = @_;
110
    my ( $dbh, $borrowernumber, $key ) = @_;
(-)a/opac/opac-privacy.pl (-1 / +1 lines)
Lines 76-79 $template->param( 'Ask_data' => '1', Link Here
76
                    'privacyview' => 1,
76
                    'privacyview' => 1,
77
);
77
);
78
78
79
output_html_with_http_headers $query, $cookie, $template->output;
79
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 396-400 $template->param( Link Here
396
    OpacHoldNotes => C4::Context->preference('OpacHoldNotes'),
396
    OpacHoldNotes => C4::Context->preference('OpacHoldNotes'),
397
);
397
);
398
398
399
output_html_with_http_headers $query, $cookie, $template->output;
399
output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };
400
401
- 

Return to bug 5371