diff --git a/koha-tmpl/opac-tmpl/prog/en/includes/usermenu.inc b/koha-tmpl/opac-tmpl/prog/en/includes/usermenu.inc index 5fe63c124c..8355124b68 100644 --- a/koha-tmpl/opac-tmpl/prog/en/includes/usermenu.inc +++ b/koha-tmpl/opac-tmpl/prog/en/includes/usermenu.inc @@ -1,10 +1,10 @@ diff --git a/opac/opac-account.pl b/opac/opac-account.pl index 3fa1d3e493..95df84224c 100755 --- a/opac/opac-account.pl +++ b/opac/opac-account.pl @@ -76,7 +76,8 @@ foreach my $row (@$accts) { $template->param ( ACCOUNT_LINES => $accts, - total => sprintf( "%.2f", $total ) + total => sprintf( "%.2f", $total ), + accountview => 1 ); output_html_with_http_headers $query, $cookie, $template->output; diff --git a/opac/opac-passwd.pl b/opac/opac-passwd.pl index 860f62a110..465dd00970 100755 --- a/opac/opac-passwd.pl +++ b/opac/opac-passwd.pl @@ -99,6 +99,7 @@ else { $template->param(firstname => $borr->{'firstname'}, surname => $borr->{'surname'}, minpasslen => $minpasslen, + passwdview => 1, ); output_html_with_http_headers $query, $cookie, $template->output; diff --git a/opac/opac-readingrecord.pl b/opac/opac-readingrecord.pl index f24af9044b..e8ba45ce99 100755 --- a/opac/opac-readingrecord.pl +++ b/opac/opac-readingrecord.pl @@ -108,6 +108,7 @@ $template->param( READING_RECORD => \@loop_reading, limit => $limit, showfulllink => 1, + readingrecview => 1 ); output_html_with_http_headers $query, $cookie, $template->output; diff --git a/opac/opac-suggestions.pl b/opac/opac-suggestions.pl index ac3870f736..a46679ad8d 100755 --- a/opac/opac-suggestions.pl +++ b/opac/opac-suggestions.pl @@ -103,6 +103,7 @@ $template->param( status => $status, suggestedbyme => $suggestedbyme, "op_$op" => 1, + suggestionsview => 1 ); output_html_with_http_headers $input, $cookie, $template->output; diff --git a/opac/opac-user.pl b/opac/opac-user.pl index 576c911d23..1e1bb9390f 100755 --- a/opac/opac-user.pl +++ b/opac/opac-user.pl @@ -224,6 +224,7 @@ $template->param( textmessaging => $borr->{textmessaging}, patronupdate => $patronupdate, OpacRenewalAllowed => C4::Context->preference("OpacRenewalAllowed"), + userview => 1, ); output_html_with_http_headers $query, $cookie, $template->output; diff --git a/opac/opac-userupdate.pl b/opac/opac-userupdate.pl index 9789b44258..fb74fb2079 100755 --- a/opac/opac-userupdate.pl +++ b/opac/opac-userupdate.pl @@ -121,7 +121,8 @@ my @bordat; $bordat[0] = $borr; $template->param( - BORROWER_INFO => \@bordat + BORROWER_INFO => \@bordat, + userupdateview => 1, ); output_html_with_http_headers $query, $cookie, $template->output;