@@ -, +, @@ ids --- C4/Auth.pm | 1 - koha-tmpl/opac-tmpl/bootstrap/en/includes/masthead.inc | 8 ++++---- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-main.tt | 8 ++++---- 3 files changed, 8 insertions(+), 9 deletions(-) --- a/C4/Auth.pm +++ a/C4/Auth.pm @@ -421,7 +421,6 @@ sub get_template_and_user { LibraryNameTitle => "" . $LibraryNameTitle, LoginBranchname => C4::Context->userenv?C4::Context->userenv->{"branchname"}:"", OPACAmazonCoverImages => C4::Context->preference("OPACAmazonCoverImages"), - NoLoginInstructions => C4::Context->preference("NoLoginInstructions"), OPACFRBRizeEditions => C4::Context->preference("OPACFRBRizeEditions"), OpacHighlightedWords => C4::Context->preference("OpacHighlightedWords"), OPACItemHolds => C4::Context->preference("OPACItemHolds"), --- a/koha-tmpl/opac-tmpl/bootstrap/en/includes/masthead.inc +++ a/koha-tmpl/opac-tmpl/bootstrap/en/includes/masthead.inc @@ -285,11 +285,11 @@
-
- [% IF ( NoLoginInstructions ) %] - [% NoLoginInstructions %] - [% END %] + [% IF Koha.Preference( 'NoLoginInstructions' ) %] +
+ [% Koha.Preference( 'NoLoginInstructions' ) %]
+ [% END %] [% IF PatronSelfRegistration && PatronSelfRegistrationDefaultCategory %]

Don't have an account? Register here.

[% END %]
--- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-main.tt +++ a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-main.tt @@ -78,11 +78,11 @@ [% IF PatronSelfRegistration && PatronSelfRegistrationDefaultCategory %]

Don't have an account? Register here.

[% END %] -
- [% IF ( NoLoginInstructions ) %] - [% NoLoginInstructions %] - [% END %] + [% IF Koha.Preference( 'NoLoginInstructions' ) %] +
+ [% Koha.Preference( 'NoLoginInstructions' ) %]
+ [% END %]
[% END # /casAuthentication %] --