@@ -, +, @@ private pages at the OPAC --- opac/opac-messaging.pl | 2 +- opac/opac-readingrecord.pl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) --- a/opac/opac-messaging.pl +++ a/opac/opac-messaging.pl @@ -66,4 +66,4 @@ $template->param( BORROWER_INFO => [ $borrower ], SMSSendDriver => C4::Context->preference("SMSSendDriver"), TalkingTechItivaPhone => C4::Context->preference("TalkingTechItivaPhoneNotification") ); -output_html_with_http_headers $query, $cookie, $template->output; +output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 }; --- a/opac/opac-readingrecord.pl +++ a/opac/opac-readingrecord.pl @@ -150,4 +150,4 @@ $template->param( OPACMySummaryHTML => $opac_summary_html ? 1 : 0, ); -output_html_with_http_headers $query, $cookie, $template->output; +output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 }; --