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

(-)a/C4/Auth.pm (-2 lines)
Lines 570-576 sub get_template_and_user { Link Here
570
            OpacKohaUrl                           => C4::Context->preference("OpacKohaUrl"),
570
            OpacKohaUrl                           => C4::Context->preference("OpacKohaUrl"),
571
            OpacMainUserBlock                     => "" . C4::Context->preference("OpacMainUserBlock"),
571
            OpacMainUserBlock                     => "" . C4::Context->preference("OpacMainUserBlock"),
572
            OpacNav                               => "" . C4::Context->preference("OpacNav"),
572
            OpacNav                               => "" . C4::Context->preference("OpacNav"),
573
            OpacNavRight                          => "" . C4::Context->preference("OpacNavRight"),
574
            OpacNavBottom                         => "" . C4::Context->preference("OpacNavBottom"),
573
            OpacNavBottom                         => "" . C4::Context->preference("OpacNavBottom"),
575
            OpacPasswordChange                    => C4::Context->preference("OpacPasswordChange"),
574
            OpacPasswordChange                    => C4::Context->preference("OpacPasswordChange"),
576
            OPACPatronDetails                     => C4::Context->preference("OPACPatronDetails"),
575
            OPACPatronDetails                     => C4::Context->preference("OPACPatronDetails"),
Lines 1249-1255 sub checkauth { Link Here
1249
        LibraryNameTitle                      => "" . $LibraryNameTitle,
1248
        LibraryNameTitle                      => "" . $LibraryNameTitle,
1250
        opacuserlogin                         => C4::Context->preference("opacuserlogin"),
1249
        opacuserlogin                         => C4::Context->preference("opacuserlogin"),
1251
        OpacNav                               => C4::Context->preference("OpacNav"),
1250
        OpacNav                               => C4::Context->preference("OpacNav"),
1252
        OpacNavRight                          => C4::Context->preference("OpacNavRight"),
1253
        OpacNavBottom                         => C4::Context->preference("OpacNavBottom"),
1251
        OpacNavBottom                         => C4::Context->preference("OpacNavBottom"),
1254
        opaccredits                           => C4::Context->preference("opaccredits"),
1252
        opaccredits                           => C4::Context->preference("opaccredits"),
1255
        OpacFavicon                           => C4::Context->preference("OpacFavicon"),
1253
        OpacFavicon                           => C4::Context->preference("OpacFavicon"),
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-registration-confirmation.tt (-1 / +3 lines)
Lines 1-5 Link Here
1
[% USE raw %]
1
[% USE raw %]
2
[% USE Koha %]
2
[% USE Koha %]
3
[% USE KohaNews %]
3
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
4
<title>[% IF ( LibraryNameTitle ) %][% LibraryNameTitle | html %][% ELSE %]Koha online[% END %] catalog</title>
5
<title>[% IF ( LibraryNameTitle ) %][% LibraryNameTitle | html %][% ELSE %]Koha online[% END %] catalog</title>
5
[% INCLUDE 'doc-head-close.inc' %]
6
[% INCLUDE 'doc-head-close.inc' %]
Lines 67-72 Link Here
67
68
68
                </div> <!-- / .span7/9 -->
69
                </div> <!-- / .span7/9 -->
69
70
71
                    [% SET OpacNavRight = KohaNews.get( location => "OpacNavRight", lang => news_lang, library => branchcode ) %]
70
                    [% IF ( ( Koha.Preference( 'opacuserlogin' ) == 1 ) || OpacNavRight ) %]
72
                    [% IF ( ( Koha.Preference( 'opacuserlogin' ) == 1 ) || OpacNavRight ) %]
71
                        <div class="span3">
73
                        <div class="span3">
72
                            [% IF Koha.Preference( 'opacuserlogin' ) == 1 %]
74
                            [% IF Koha.Preference( 'opacuserlogin' ) == 1 %]
Lines 101-107 Link Here
101
                            [% END # /opacuserlogin %]
103
                            [% END # /opacuserlogin %]
102
                            [% IF ( OpacNavRight ) %]
104
                            [% IF ( OpacNavRight ) %]
103
                                <div id="opacnavright">
105
                                <div id="opacnavright">
104
                                    [% OpacNavRight | $raw %]
106
                                    [% PROCESS koha_news_block news => OpacNavRight %]
105
                                </div>
107
                                </div>
106
                            [% END # /OpacNavRight %]
108
                            [% END # /OpacNavRight %]
107
                        </div> <!-- / .span3 -->
109
                        </div> <!-- / .span3 -->
(-)a/opac/opac-registration-verify.pl (-1 / +3 lines)
Lines 80-85 if ( Link Here
80
              C4::Context->preference(
80
              C4::Context->preference(
81
                'PatronSelfRegistrationAdditionalInstructions')
81
                'PatronSelfRegistrationAdditionalInstructions')
82
        );
82
        );
83
84
        my ($theme, $news_lang, $availablethemes) = C4::Templates::themelanguage(C4::Context->config('opachtdocs'),'opac-registration-confirmation.tt','opac',$cgi);
85
        $template->param( news_lang => $news_lang );
83
    }
86
    }
84
87
85
}
88
}
86
- 

Return to bug 23253