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

(-)a/C4/Auth.pm (-5 / +7 lines)
Lines 328-334 sub get_template_and_user { Link Here
328
            noItemTypeImages             => C4::Context->preference("noItemTypeImages"),
328
            noItemTypeImages             => C4::Context->preference("noItemTypeImages"),
329
            marcflavour                  => C4::Context->preference("marcflavour"),
329
            marcflavour                  => C4::Context->preference("marcflavour"),
330
            persona                      => C4::Context->preference("persona"),
330
            persona                      => C4::Context->preference("persona"),
331
            UseCourseReserves            => C4::Context->preference("UseCourseReserves"),
332
    );
331
    );
333
    if ( $in->{'type'} eq "intranet" ) {
332
    if ( $in->{'type'} eq "intranet" ) {
334
        $template->param(
333
        $template->param(
Lines 361-366 sub get_template_and_user { Link Here
361
            AllowMultipleCovers         => C4::Context->preference('AllowMultipleCovers'),
360
            AllowMultipleCovers         => C4::Context->preference('AllowMultipleCovers'),
362
            EnableBorrowerFiles         => C4::Context->preference('EnableBorrowerFiles'),
361
            EnableBorrowerFiles         => C4::Context->preference('EnableBorrowerFiles'),
363
            UseKohaPlugins              => C4::Context->preference('UseKohaPlugins'),
362
            UseKohaPlugins              => C4::Context->preference('UseKohaPlugins'),
363
            UseCourseReserves            => C4::Context->preference("UseCourseReserves"),
364
        );
364
        );
365
    }
365
    }
366
    else {
366
    else {
Lines 400-406 sub get_template_and_user { Link Here
400
            OpacHighlightedWords      => C4::Context->preference("OpacHighlightedWords"),
400
            OpacHighlightedWords      => C4::Context->preference("OpacHighlightedWords"),
401
            OPACItemHolds             => C4::Context->preference("OPACItemHolds"),
401
            OPACItemHolds             => C4::Context->preference("OPACItemHolds"),
402
            OPACShelfBrowser          => "". C4::Context->preference("OPACShelfBrowser"),
402
            OPACShelfBrowser          => "". C4::Context->preference("OPACShelfBrowser"),
403
            OpacShowRecentComments    => C4::Context->preference("OpacShowRecentComments"),
404
            OPACURLOpenInNewWindow    => "" . C4::Context->preference("OPACURLOpenInNewWindow"),
403
            OPACURLOpenInNewWindow    => "" . C4::Context->preference("OPACURLOpenInNewWindow"),
405
            OPACUserCSS               => "". C4::Context->preference("OPACUserCSS"),
404
            OPACUserCSS               => "". C4::Context->preference("OPACUserCSS"),
406
            OPACMobileUserCSS         => "". C4::Context->preference("OPACMobileUserCSS"),
405
            OPACMobileUserCSS         => "". C4::Context->preference("OPACMobileUserCSS"),
Lines 440-452 sub get_template_and_user { Link Here
440
            opacsmallimage            => "" . C4::Context->preference("opacsmallimage"),
439
            opacsmallimage            => "" . C4::Context->preference("opacsmallimage"),
441
            opacuserjs                => C4::Context->preference("opacuserjs"),
440
            opacuserjs                => C4::Context->preference("opacuserjs"),
442
            opacuserlogin             => "" . C4::Context->preference("opacuserlogin"),
441
            opacuserlogin             => "" . C4::Context->preference("opacuserlogin"),
443
            reviewson                 => C4::Context->preference("reviewson"),
444
            ShowReviewer              => C4::Context->preference("ShowReviewer"),
442
            ShowReviewer              => C4::Context->preference("ShowReviewer"),
445
            ShowReviewerPhoto         => C4::Context->preference("ShowReviewerPhoto"),
443
            ShowReviewerPhoto         => C4::Context->preference("ShowReviewerPhoto"),
446
            suggestion                => "" . C4::Context->preference("suggestion"),
444
            suggestion                => "" . C4::Context->preference("suggestion"),
447
            virtualshelves            => "" . C4::Context->preference("virtualshelves"),
445
            virtualshelves            => "" . C4::Context->preference("virtualshelves"),
448
            OPACSerialIssueDisplayCount => C4::Context->preference("OPACSerialIssueDisplayCount"),
446
            OPACSerialIssueDisplayCount => C4::Context->preference("OPACSerialIssueDisplayCount"),
449
            OpacAddMastheadLibraryPulldown => C4::Context->preference("OpacAddMastheadLibraryPulldown"),
450
            OPACXSLTDetailsDisplay           => C4::Context->preference("OPACXSLTDetailsDisplay"),
447
            OPACXSLTDetailsDisplay           => C4::Context->preference("OPACXSLTDetailsDisplay"),
451
            OPACXSLTResultsDisplay           => C4::Context->preference("OPACXSLTResultsDisplay"),
448
            OPACXSLTResultsDisplay           => C4::Context->preference("OPACXSLTResultsDisplay"),
452
            SyndeticsClientCode          => C4::Context->preference("SyndeticsClientCode"),
449
            SyndeticsClientCode          => C4::Context->preference("SyndeticsClientCode"),
Lines 982-987 sub checkauth { Link Here
982
        push @inputs, { name => $name, value => $value };
979
        push @inputs, { name => $name, value => $value };
983
    }
980
    }
984
981
982
    my $LibraryNameTitle = C4::Context->preference("LibraryName");
983
    $LibraryNameTitle =~ s/<(?:\/?)(?:br|p)\s*(?:\/?)>/ /sgi;
984
    $LibraryNameTitle =~ s/<(?:[^<>'"]|'(?:[^']*)'|"(?:[^"]*)")*>//sg;
985
985
    my $template_name = ( $type eq 'opac' ) ? 'opac-auth.tmpl' : 'auth.tmpl';
986
    my $template_name = ( $type eq 'opac' ) ? 'opac-auth.tmpl' : 'auth.tmpl';
986
    my $template = C4::Templates::gettemplate($template_name, $type, $query );
987
    my $template = C4::Templates::gettemplate($template_name, $type, $query );
987
    $template->param(
988
    $template->param(
Lines 993-999 sub checkauth { Link Here
993
        casAuthentication    => C4::Context->preference("casAuthentication"),
994
        casAuthentication    => C4::Context->preference("casAuthentication"),
994
        suggestion           => C4::Context->preference("suggestion"),
995
        suggestion           => C4::Context->preference("suggestion"),
995
        virtualshelves       => C4::Context->preference("virtualshelves"),
996
        virtualshelves       => C4::Context->preference("virtualshelves"),
996
        LibraryName          => C4::Context->preference("LibraryName"),
997
        LibraryName          => "" . C4::Context->preference("LibraryName"),
998
        LibraryNameTitle     => "" . $LibraryNameTitle,
997
        opacuserlogin        => C4::Context->preference("opacuserlogin"),
999
        opacuserlogin        => C4::Context->preference("opacuserlogin"),
998
        OpacNav              => C4::Context->preference("OpacNav"),
1000
        OpacNav              => C4::Context->preference("OpacNav"),
999
        OpacNavRight         => C4::Context->preference("OpacNavRight"),
1001
        OpacNavRight         => C4::Context->preference("OpacNavRight"),
(-)a/koha-tmpl/opac-tmpl/ccsr/en/includes/masthead.inc (-6 / +6 lines)
Lines 29-35 Link Here
29
[% IF ( OpacPublic ) %]
29
[% IF ( OpacPublic ) %]
30
<div id="fluid-offset">
30
<div id="fluid-offset">
31
[% UNLESS ( advsearch ) %]
31
[% UNLESS ( advsearch ) %]
32
[% IF ( OpacAddMastheadLibraryPulldown ) %]
32
[% IF Koha.Preference( 'OpacAddMastheadLibraryPulldown' ) == 1 %]
33
    [% IF ( OpacShowFiltersPulldownMobile and not OpacShowLibrariesPulldownMobile ) or ( not OpacShowFiltersPulldownMobile and OpacShowLibrariesPulldownMobile ) %]
33
    [% IF ( OpacShowFiltersPulldownMobile and not OpacShowLibrariesPulldownMobile ) or ( not OpacShowFiltersPulldownMobile and OpacShowLibrariesPulldownMobile ) %]
34
        <form name="searchform" method="get" action="/cgi-bin/koha/opac-search.pl" id="searchform" class="multi-libraries single-field-mobile">
34
        <form name="searchform" method="get" action="/cgi-bin/koha/opac-search.pl" id="searchform" class="multi-libraries single-field-mobile">
35
    [% ELSE %]
35
    [% ELSE %]
Lines 94-100 Link Here
94
[% END %]
94
[% END %]
95
</div>
95
</div>
96
96
97
   [% IF ( OpacAddMastheadLibraryPulldown ) %]
97
   [% IF Koha.Preference( 'OpacAddMastheadLibraryPulldown' ) == 1 %]
98
        [% IF ( OpacShowLibrariesPulldownMobile ) %]
98
        [% IF ( OpacShowLibrariesPulldownMobile ) %]
99
            <div id="libraries">
99
            <div id="libraries">
100
        [% ELSE %]
100
        [% ELSE %]
Lines 142-148 Link Here
142
142
143
    </form>
143
    </form>
144
[% ELSE %] <!--advsearch -->
144
[% ELSE %] <!--advsearch -->
145
    [% IF ( OpacAddMastheadLibraryPulldown ) %]
145
    [% IF Koha.Preference( 'OpacAddMastheadLibraryPulldown' ) == 1 %]
146
        [% IF ( OpacShowFiltersPulldownMobile and not OpacShowLibrariesPulldownMobile ) or ( not OpacShowFiltersPulldownMobile and OpacShowLibrariesPulldownMobile ) %]
146
        [% IF ( OpacShowFiltersPulldownMobile and not OpacShowLibrariesPulldownMobile ) or ( not OpacShowFiltersPulldownMobile and OpacShowLibrariesPulldownMobile ) %]
147
            <form name="searchform" method="get" action="/cgi-bin/koha/opac-search.pl" id="searchform" class="multi-libraries single-field-mobile">
147
            <form name="searchform" method="get" action="/cgi-bin/koha/opac-search.pl" id="searchform" class="multi-libraries single-field-mobile">
148
        [% ELSE %]
148
        [% ELSE %]
Lines 170-176 Link Here
170
    <input type="text" id = "transl1" name="q" class="left transparent" style="width: 35%; font-size: 111%;" disabled="disabled"/><div id="translControl"></div>
170
    <input type="text" id = "transl1" name="q" class="left transparent" style="width: 35%; font-size: 111%;" disabled="disabled"/><div id="translControl"></div>
171
</div>
171
</div>
172
172
173
   [% IF ( OpacAddMastheadLibraryPulldown ) %]
173
   [% IF Koha.Preference( 'OpacAddMastheadLibraryPulldown' ) == 1 %]
174
        [% IF ( OpacShowLibrariesPulldownMobile ) %]
174
        [% IF ( OpacShowLibrariesPulldownMobile ) %]
175
            <div id="libraries">
175
            <div id="libraries">
176
        [% ELSE %]
176
        [% ELSE %]
Lines 192-201 Link Here
192
192
193
<div id="moresearches">
193
<div id="moresearches">
194
<a href="/cgi-bin/koha/opac-search.pl">Advanced search</a>
194
<a href="/cgi-bin/koha/opac-search.pl">Advanced search</a>
195
[% IF ( UseCourseReserves ) %]<span class="pipe"> | </span><a href="/cgi-bin/koha/opac-course-reserves.pl">Course Reserves</a>[% END %]
195
[% IF Koha.Preference( 'UseCourseReserves' ) == 1 %]<span class="pipe"> | </span><a href="/cgi-bin/koha/opac-course-reserves.pl">Course reserves</a>[% END %]
196
[% IF ( OpacBrowser ) %]<span class="pipe"> | </span><a href="/cgi-bin/koha/opac-browser.pl">Browse by hierarchy</a>[% END %]
196
[% IF ( OpacBrowser ) %]<span class="pipe"> | </span><a href="/cgi-bin/koha/opac-browser.pl">Browse by hierarchy</a>[% END %]
197
[% IF ( OpacAuthorities ) %]<span class="pipe"> | </span><a href="/cgi-bin/koha/opac-authorities-home.pl">Authority search</a>[% END %]
197
[% IF ( OpacAuthorities ) %]<span class="pipe"> | </span><a href="/cgi-bin/koha/opac-authorities-home.pl">Authority search</a>[% END %]
198
[% IF ( opacuserlogin && reviewson && OpacShowRecentComments ) %]<span class="pipe"> | </span><a href="/cgi-bin/koha/opac-showreviews.pl">Recent comments</a>[% END %]
198
[% IF ( opacuserlogin && ( Koha.Preference( 'reviewson' ) == 1 ) && ( Koha.Preference( 'OpacShowRecentComments' ) == 1 ) ) %]<span class="pipe"> | </span><a href="/cgi-bin/koha/opac-showreviews.pl">Recent comments</a>[% END %]
199
[% IF ( TagsEnabled ) %]<span class="pipe"> | </span><a href="/cgi-bin/koha/opac-tags.pl">Tag cloud</a>[% END %]
199
[% IF ( TagsEnabled ) %]<span class="pipe"> | </span><a href="/cgi-bin/koha/opac-tags.pl">Tag cloud</a>[% END %]
200
[% IF ( OpacCloud ) %]<span class="pipe"> | </span><a href="/cgi-bin/koha/opac-tags_subject.pl">Subject cloud</a>[% END %]
200
[% IF ( OpacCloud ) %]<span class="pipe"> | </span><a href="/cgi-bin/koha/opac-tags_subject.pl">Subject cloud</a>[% END %]
201
[% IF ( OpacTopissue ) %]<span class="pipe"> | </span><a href="/cgi-bin/koha/opac-topissues.pl">Most popular</a>[% END %]
201
[% IF ( OpacTopissue ) %]<span class="pipe"> | </span><a href="/cgi-bin/koha/opac-topissues.pl">Most popular</a>[% END %]
(-)a/koha-tmpl/opac-tmpl/prog/en/includes/masthead.inc (-4 / +4 lines)
Lines 30-36 Link Here
30
<div id="fluid-offset">
30
<div id="fluid-offset">
31
[% UNLESS ( advsearch ) %]<form name="searchform" method="get" action="/cgi-bin/koha/opac-search.pl" id="searchform">
31
[% UNLESS ( advsearch ) %]<form name="searchform" method="get" action="/cgi-bin/koha/opac-search.pl" id="searchform">
32
    <label for="masthead_search" class="left"> Search 
32
    <label for="masthead_search" class="left"> Search 
33
	[% UNLESS ( OpacAddMastheadLibraryPulldown ) %]
33
  [% UNLESS Koha.Preference( 'OpacAddMastheadLibraryPulldown' ) == 1 %]
34
            [% IF ( mylibraryfirst ) %] (in [% mylibraryfirst %] only)[% END %]
34
            [% IF ( mylibraryfirst ) %] (in [% mylibraryfirst %] only)[% END %]
35
	[% END %]
35
	[% END %]
36
    </label>
36
    </label>
Lines 84-90 Link Here
84
[% ELSE %]
84
[% ELSE %]
85
        <input type="text" title="Type search term" id = "transl1" name="q" class="left" style="width: 35%; font-size: 111%;"/><div id="translControl"></div>
85
        <input type="text" title="Type search term" id = "transl1" name="q" class="left" style="width: 35%; font-size: 111%;"/><div id="translControl"></div>
86
[% END %]
86
[% END %]
87
   [% IF ( OpacAddMastheadLibraryPulldown ) %]
87
   [% IF Koha.Preference( 'OpacAddMastheadLibraryPulldown' ) == 1 %]
88
      <select name="branch_group_limit" id="select_library" class="left">
88
      <select name="branch_group_limit" id="select_library" class="left">
89
         <option value="">All libraries</option>
89
         <option value="">All libraries</option>
90
         [% IF BranchCategoriesLoop %]<optgroup label="Libraries">[% END %]
90
         [% IF BranchCategoriesLoop %]<optgroup label="Libraries">[% END %]
Lines 131-140 Link Here
131
131
132
<div id="moresearches">
132
<div id="moresearches">
133
<a href="/cgi-bin/koha/opac-search.pl">Advanced search</a>
133
<a href="/cgi-bin/koha/opac-search.pl">Advanced search</a>
134
[% IF ( UseCourseReserves ) %]<span class="pipe"> | </span><a href="/cgi-bin/koha/opac-course-reserves.pl">Course Reserves</a>[% END %]
134
[% IF Koha.Preference( 'UseCourseReserves' ) == 1 %]<span class="pipe"> | </span><a href="/cgi-bin/koha/opac-course-reserves.pl">Course reserves</a>[% END %]
135
[% IF ( OpacBrowser ) %]<span class="pipe"> | </span><a href="/cgi-bin/koha/opac-browser.pl">Browse by hierarchy</a>[% END %]
135
[% IF ( OpacBrowser ) %]<span class="pipe"> | </span><a href="/cgi-bin/koha/opac-browser.pl">Browse by hierarchy</a>[% END %]
136
[% IF ( OpacAuthorities ) %]<span class="pipe"> | </span><a href="/cgi-bin/koha/opac-authorities-home.pl">Authority search</a>[% END %]
136
[% IF ( OpacAuthorities ) %]<span class="pipe"> | </span><a href="/cgi-bin/koha/opac-authorities-home.pl">Authority search</a>[% END %]
137
[% IF ( opacuserlogin && reviewson && OpacShowRecentComments ) %]<span class="pipe"> | </span><a href="/cgi-bin/koha/opac-showreviews.pl">Recent comments</a>[% END %]
137
[% IF ( opacuserlogin && ( Koha.Preference( 'reviewson' ) == 1 ) && ( Koha.Preference( 'OpacShowRecentComments' ) == 1 ) ) %]<span class="pipe"> | </span><a href="/cgi-bin/koha/opac-showreviews.pl">Recent comments</a>[% END %]
138
[% IF ( TagsEnabled ) %]<span class="pipe"> | </span><a href="/cgi-bin/koha/opac-tags.pl">Tag cloud</a>[% END %]
138
[% IF ( TagsEnabled ) %]<span class="pipe"> | </span><a href="/cgi-bin/koha/opac-tags.pl">Tag cloud</a>[% END %]
139
[% IF ( OpacCloud ) %]<span class="pipe"> | </span><a href="/cgi-bin/koha/opac-tags_subject.pl">Subject cloud</a>[% END %]
139
[% IF ( OpacCloud ) %]<span class="pipe"> | </span><a href="/cgi-bin/koha/opac-tags_subject.pl">Subject cloud</a>[% END %]
140
[% IF ( OpacTopissue ) %]<span class="pipe"> | </span><a href="/cgi-bin/koha/opac-topissues.pl">Most popular</a>[% END %]
140
[% IF ( OpacTopissue ) %]<span class="pipe"> | </span><a href="/cgi-bin/koha/opac-topissues.pl">Most popular</a>[% END %]
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-ISBDdetail.tt (+1 lines)
Lines 1-3 Link Here
1
[% USE Koha %]
1
[% INCLUDE 'doc-head-open.inc' %][% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo; ISBD view
2
[% INCLUDE 'doc-head-open.inc' %][% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo; ISBD view
2
[% INCLUDE 'doc-head-close.inc' %]
3
[% INCLUDE 'doc-head-close.inc' %]
3
<script type="text/javascript">
4
<script type="text/javascript">
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-MARCdetail.tt (+1 lines)
Lines 1-3 Link Here
1
[% USE Koha %]
1
[% INCLUDE 'doc-head-open.inc' %][% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo;  MARC details for record no. [% biblionumber %]
2
[% INCLUDE 'doc-head-open.inc' %][% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo;  MARC details for record no. [% biblionumber %]
2
[% INCLUDE 'doc-head-close.inc' %]
3
[% INCLUDE 'doc-head-close.inc' %]
3
<script type="text/javascript">
4
<script type="text/javascript">
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-account.tt (+1 lines)
Lines 1-3 Link Here
1
[% USE Koha %]
1
[% USE KohaDates %]
2
[% USE KohaDates %]
2
3
3
[% INCLUDE 'doc-head-open.inc' %][% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo; Your fines and charges
4
[% INCLUDE 'doc-head-open.inc' %][% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo; Your fines and charges
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-advsearch.tt (+1 lines)
Lines 1-3 Link Here
1
[% USE Koha %]
1
[% INCLUDE 'doc-head-open.inc' %]
2
[% INCLUDE 'doc-head-open.inc' %]
2
[% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %]
3
[% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %]
3
    catalog &rsaquo; Advanced search
4
    catalog &rsaquo; Advanced search
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-alert-subscribe.tt (+1 lines)
Lines 1-3 Link Here
1
[% USE Koha %]
1
[% INCLUDE 'doc-head-open.inc' %][% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo;  Serials
2
[% INCLUDE 'doc-head-open.inc' %][% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo;  Serials
2
[% INCLUDE 'doc-head-close.inc' %]
3
[% INCLUDE 'doc-head-close.inc' %]
3
</head>
4
</head>
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-auth-MARCdetail.tt (+1 lines)
Lines 1-3 Link Here
1
[% USE Koha %]
1
[% PROCESS 'opac-authorities.inc' %]
2
[% PROCESS 'opac-authorities.inc' %]
2
[% INCLUDE 'doc-head-open.inc' %][% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo;  Entry
3
[% INCLUDE 'doc-head-open.inc' %][% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo;  Entry
3
[% INCLUDE 'doc-head-close.inc' %]
4
[% INCLUDE 'doc-head-close.inc' %]
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-auth-detail.tt (+1 lines)
Lines 1-3 Link Here
1
[% USE Koha %]
1
[% PROCESS 'opac-authorities.inc' %]
2
[% PROCESS 'opac-authorities.inc' %]
2
[% INCLUDE 'doc-head-open.inc' %][% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo;  Entry
3
[% INCLUDE 'doc-head-open.inc' %][% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo;  Entry
3
[% INCLUDE 'doc-head-close.inc' %]
4
[% INCLUDE 'doc-head-close.inc' %]
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-auth.tt (+1 lines)
Lines 1-3 Link Here
1
[% USE Koha %]
1
[% INCLUDE 'doc-head-open.inc' %][% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %]
2
[% INCLUDE 'doc-head-open.inc' %][% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %]
2
[% IF ( opacuserlogin ) %]
3
[% IF ( opacuserlogin ) %]
3
 catalog &rsaquo;  Log in to your account
4
 catalog &rsaquo;  Log in to your account
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-authorities-home.tt (+1 lines)
Lines 1-3 Link Here
1
[% USE Koha %]
1
[% INCLUDE 'doc-head-open.inc' %][% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo; Authority search
2
[% INCLUDE 'doc-head-open.inc' %][% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo; Authority search
2
[% INCLUDE 'doc-head-close.inc' %]
3
[% INCLUDE 'doc-head-close.inc' %]
3
</head>
4
</head>
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-authoritiessearchresultlist.tt (+1 lines)
Lines 1-3 Link Here
1
[% USE Koha %]
1
[% PROCESS 'opac-authorities.inc' %]
2
[% PROCESS 'opac-authorities.inc' %]
2
[% PROCESS 'authorities-search-results.inc' %]
3
[% PROCESS 'authorities-search-results.inc' %]
3
[% INCLUDE 'doc-head-open.inc' %][% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo; [% IF ( total ) %]Authority search result[% ELSE %]No results found[% END %]
4
[% INCLUDE 'doc-head-open.inc' %][% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo; [% IF ( total ) %]Authority search result[% ELSE %]No results found[% END %]
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-browser.tt (+1 lines)
Lines 1-3 Link Here
1
[% USE Koha %]
1
[% INCLUDE 'doc-head-open.inc' %][% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo;  ISBD
2
[% INCLUDE 'doc-head-open.inc' %][% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo;  ISBD
2
[% INCLUDE 'doc-head-close.inc' %]
3
[% INCLUDE 'doc-head-close.inc' %]
3
</head>
4
</head>
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-course-details.tt (+1 lines)
Lines 1-3 Link Here
1
[% USE Koha %]
1
[% USE KohaDates %]
2
[% USE KohaDates %]
2
[% USE AuthorisedValues %]
3
[% USE AuthorisedValues %]
3
[% USE ItemTypes %]
4
[% USE ItemTypes %]
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-course-reserves.tt (+1 lines)
Lines 1-3 Link Here
1
[% USE Koha %]
1
[% USE AuthorisedValues %]
2
[% USE AuthorisedValues %]
2
3
3
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-detail.tt (-4 / +5 lines)
Lines 1-10 Link Here
1
[% USE Koha %]
1
[% USE KohaDates %]
2
[% USE KohaDates %]
2
[% USE AuthorisedValues %]
3
[% USE AuthorisedValues %]
3
[% SET TagsShowEnabled = ( TagsEnabled && TagsShowOnDetail ) %]
4
[% SET TagsShowEnabled = ( TagsEnabled && TagsShowOnDetail ) %]
4
[% SET TagsInputEnabled = ( opacuserlogin && TagsEnabled && TagsInputOnDetail ) %]
5
[% SET TagsInputEnabled = ( opacuserlogin && TagsEnabled && TagsInputOnDetail ) %]
5
6
6
[% ShowCourseReservesHeader = 0 %]
7
[% ShowCourseReservesHeader = 0 %]
7
[% IF UseCourseReserves %]
8
[% IF Koha.Preference( 'UseCourseReserves' ) == 1 %]
8
    [% FOREACH ITEM_RESULT IN itemloop %]
9
    [% FOREACH ITEM_RESULT IN itemloop %]
9
       [% IF ITEM_RESULT.course_reserves %]
10
       [% IF ITEM_RESULT.course_reserves %]
10
           [% FOREACH r IN ITEM_RESULT.course_reserves %]
11
           [% FOREACH r IN ITEM_RESULT.course_reserves %]
Lines 959-965 YAHOO.util.Event.onContentReady("furtherm", function () { Link Here
959
        <a href="#subscriptions">Subscriptions</a>
960
        <a href="#subscriptions">Subscriptions</a>
960
    </li>
961
    </li>
961
[% END %]
962
[% END %]
962
[% IF ( reviewson ) %]
963
[% IF ( Koha.Preference( 'reviewson' ) == 1 ) %]
963
    <li id="tab_comments"><a href="#comments">Comments ( [% reviews.size || 0 %] )</a></li>
964
    <li id="tab_comments"><a href="#comments">Comments ( [% reviews.size || 0 %] )</a></li>
964
[% END %]
965
[% END %]
965
966
Lines 1234-1240 YAHOO.util.Event.onContentReady("furtherm", function () { Link Here
1234
<!-- /Library Thing for Libraries Content -->
1235
<!-- /Library Thing for Libraries Content -->
1235
1236
1236
1237
1237
[% IF ( reviewson ) %]
1238
[% IF ( Koha.Preference( 'reviewson' ) == 1 ) %]
1238
<div id="comments">
1239
<div id="comments">
1239
    <div id="newcomment"></div>
1240
    <div id="newcomment"></div>
1240
    [% IF ( reviews ) %]
1241
    [% IF ( reviews ) %]
Lines 1489-1495 YAHOO.util.Event.onContentReady("furtherm", function () { Link Here
1489
        [% ELSIF show_priority %]
1490
        [% ELSIF show_priority %]
1490
            <th>Item hold queue priority</th>
1491
            <th>Item hold queue priority</th>
1491
        [% END %]
1492
        [% END %]
1492
        [% IF ( ShowCourseReservesHeader ) %]<th id="item_coursereserves">Course Reserves</th>[% END %]
1493
        [% IF ( ShowCourseReservesHeader ) %]<th id="item_coursereserves">Course reserves</th>[% END %]
1493
        </tr></thead>
1494
        </tr></thead>
1494
	    <tbody>[% FOREACH ITEM_RESULT IN items %]
1495
	    <tbody>[% FOREACH ITEM_RESULT IN items %]
1495
      [% IF ITEM_RESULT.this_branch %]<tr class="highlight-row-detail">[% ELSE %]<tr>[% END %]
1496
      [% IF ITEM_RESULT.this_branch %]<tr class="highlight-row-detail">[% ELSE %]<tr>[% END %]
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-downloadcart.tt (+1 lines)
Lines 1-3 Link Here
1
[% USE Koha %]
1
[% INCLUDE 'doc-head-open.inc' %][% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo; Download cart[% INCLUDE 'doc-head-close.inc' %]
2
[% INCLUDE 'doc-head-open.inc' %][% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo; Download cart[% INCLUDE 'doc-head-close.inc' %]
2
</head>
3
</head>
3
<body id="opac-downloadcart" class="popup">
4
<body id="opac-downloadcart" class="popup">
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-downloadshelf.tt (+1 lines)
Lines 1-3 Link Here
1
[% USE Koha %]
1
[% INCLUDE 'doc-head-open.inc' %][% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo; Download list[% INCLUDE 'doc-head-close.inc' %]
2
[% INCLUDE 'doc-head-open.inc' %][% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo; Download list[% INCLUDE 'doc-head-close.inc' %]
2
<script type="text/javascript">//<![CDATA[
3
<script type="text/javascript">//<![CDATA[
3
	$(document).ready(function(){
4
	$(document).ready(function(){
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-full-serial-issues.tt (+1 lines)
Lines 1-3 Link Here
1
[% USE Koha %]
1
[% INCLUDE 'doc-head-open.inc' %][% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo;  Subscription information for [% bibliotitle %]
2
[% INCLUDE 'doc-head-open.inc' %][% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo;  Subscription information for [% bibliotitle %]
2
[% INCLUDE 'doc-head-close.inc' %]
3
[% INCLUDE 'doc-head-close.inc' %]
3
<script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.tablesorter.min.js"></script>
4
<script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.tablesorter.min.js"></script>
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-imageviewer.tt (+1 lines)
Lines 1-3 Link Here
1
[% USE Koha %]
1
[% INCLUDE 'doc-head-open.inc' %]
2
[% INCLUDE 'doc-head-open.inc' %]
2
[% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo; Images for: [% biblio.title |html %]
3
[% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo; Images for: [% biblio.title |html %]
3
[% INCLUDE 'doc-head-close.inc' %]
4
[% INCLUDE 'doc-head-close.inc' %]
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-main.tt (+1 lines)
Lines 1-3 Link Here
1
[% USE Koha %]
1
[% INCLUDE 'doc-head-open.inc' %]
2
[% INCLUDE 'doc-head-open.inc' %]
2
[% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog
3
[% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog
3
[% INCLUDE 'doc-head-close.inc' %]
4
[% INCLUDE 'doc-head-close.inc' %]
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-memberentry-update-submitted.tt (+1 lines)
Lines 1-3 Link Here
1
[% USE Koha %]
1
[% INCLUDE 'doc-head-open.inc' %]
2
[% INCLUDE 'doc-head-open.inc' %]
2
[% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo; Updates submitted
3
[% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo; Updates submitted
3
[% INCLUDE 'doc-head-close.inc' %]
4
[% INCLUDE 'doc-head-close.inc' %]
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-memberentry.tt (+1 lines)
Lines 1-3 Link Here
1
[% USE Koha %]
1
[% USE KohaDates %]
2
[% USE KohaDates %]
2
[% SET userupdateview = 1 %]
3
[% SET userupdateview = 1 %]
3
4
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-messaging.tt (+1 lines)
Lines 1-3 Link Here
1
[% USE Koha %]
1
[% INCLUDE 'doc-head-open.inc' %][% IF ( LibraryNameTitle ) %][% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %][% ELSE %]Koha online[% END %] catalog &rsaquo; Your messaging settings
2
[% INCLUDE 'doc-head-open.inc' %][% IF ( LibraryNameTitle ) %][% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %][% ELSE %]Koha online[% END %] catalog &rsaquo; Your messaging settings
2
[% INCLUDE 'doc-head-close.inc' %]
3
[% INCLUDE 'doc-head-close.inc' %]
3
<script type="text/javascript">//<![CDATA[
4
<script type="text/javascript">//<![CDATA[
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-passwd.tt (+1 lines)
Lines 1-3 Link Here
1
[% USE Koha %]
1
[% INCLUDE 'doc-head-open.inc' %][% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo; Change your password
2
[% INCLUDE 'doc-head-open.inc' %][% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo; Change your password
2
[% INCLUDE 'doc-head-close.inc' %]
3
[% INCLUDE 'doc-head-close.inc' %]
3
</head>
4
</head>
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-privacy.tt (+1 lines)
Lines 1-3 Link Here
1
[% USE Koha %]
1
[% INCLUDE 'doc-head-open.inc' %][% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo; Your privacy management
2
[% INCLUDE 'doc-head-open.inc' %][% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo; Your privacy management
2
[% INCLUDE 'doc-head-close.inc' %]
3
[% INCLUDE 'doc-head-close.inc' %]
3
</head>
4
</head>
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-readingrecord.tt (-1 / +1 lines)
Lines 1-5 Link Here
1
[% USE Koha %]
1
[% USE KohaDates %]
2
[% USE KohaDates %]
2
3
[% INCLUDE 'doc-head-open.inc' %][% LibraryNameTitle or "Koha online" %] catalog &rsaquo; Your checkout history
3
[% INCLUDE 'doc-head-open.inc' %][% LibraryNameTitle or "Koha online" %] catalog &rsaquo; Your checkout history
4
[% INCLUDE 'doc-head-close.inc' %]
4
[% INCLUDE 'doc-head-close.inc' %]
5
<style type="text/css">ul.ui-tabs-nav li a, ul.ui-tabs-nav li span.a  { padding:0.6em 1em; }</style>
5
<style type="text/css">ul.ui-tabs-nav li a, ul.ui-tabs-nav li span.a  { padding:0.6em 1em; }</style>
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-registration-confirmation.tt (+1 lines)
Lines 1-3 Link Here
1
[% USE Koha %]
1
[% INCLUDE 'doc-head-open.inc' %]
2
[% INCLUDE 'doc-head-open.inc' %]
2
[% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog
3
[% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog
3
[% INCLUDE 'doc-head-close.inc' %]
4
[% INCLUDE 'doc-head-close.inc' %]
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-registration-email-sent.tt (+1 lines)
Lines 1-3 Link Here
1
[% USE Koha %]
1
[% INCLUDE 'doc-head-open.inc' %]
2
[% INCLUDE 'doc-head-open.inc' %]
2
[% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo; Please confirm your registration
3
[% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo; Please confirm your registration
3
[% INCLUDE 'doc-head-close.inc' %]
4
[% INCLUDE 'doc-head-close.inc' %]
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-registration-invalid.tt (+1 lines)
Lines 1-3 Link Here
1
[% USE Koha %]
1
[% INCLUDE 'doc-head-open.inc' %]
2
[% INCLUDE 'doc-head-open.inc' %]
2
[% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog
3
[% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog
3
[% INCLUDE 'doc-head-close.inc' %]
4
[% INCLUDE 'doc-head-close.inc' %]
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-reserve.tt (+1 lines)
Lines 1-3 Link Here
1
[% USE Koha %]
1
[% INCLUDE 'doc-head-open.inc' %][% LibraryNameTitle or "Koha online" %] catalog &rsaquo;  Placing a hold
2
[% INCLUDE 'doc-head-open.inc' %][% LibraryNameTitle or "Koha online" %] catalog &rsaquo;  Placing a hold
2
[% INCLUDE 'doc-head-close.inc' %]
3
[% INCLUDE 'doc-head-close.inc' %]
3
[% INCLUDE 'calendar.inc' %]
4
[% INCLUDE 'calendar.inc' %]
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-results-grouped.tt (+1 lines)
Lines 1-3 Link Here
1
[% USE Koha %]
1
[% INCLUDE 'doc-head-open.inc' %]
2
[% INCLUDE 'doc-head-open.inc' %]
2
[% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo;
3
[% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo;
3
[% IF ( searchdesc ) %]
4
[% IF ( searchdesc ) %]
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-search-history.tt (+1 lines)
Lines 1-3 Link Here
1
[% USE Koha %]
1
[% INCLUDE 'doc-head-open.inc' %]
2
[% INCLUDE 'doc-head-open.inc' %]
2
[% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo; Your search history
3
[% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo; Your search history
3
[% INCLUDE 'doc-head-close.inc' %]
4
[% INCLUDE 'doc-head-close.inc' %]
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-serial-issues.tt (+1 lines)
Lines 1-3 Link Here
1
[% USE Koha %]
1
[% INCLUDE 'doc-head-open.inc' %][% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo;  Serials
2
[% INCLUDE 'doc-head-open.inc' %][% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo;  Serials
2
[% INCLUDE 'doc-head-close.inc' %]
3
[% INCLUDE 'doc-head-close.inc' %]
3
</head>
4
</head>
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-shelves.tt (-1 / +1 lines)
Lines 1-6 Link Here
1
[% USE Koha %]
1
[% SET TagsShowEnabled = ( TagsEnabled && TagsShowOnList ) %]
2
[% SET TagsShowEnabled = ( TagsEnabled && TagsShowOnList ) %]
2
[% SET TagsInputEnabled = ( opacuserlogin && TagsEnabled && TagsInputOnList ) %]
3
[% SET TagsInputEnabled = ( opacuserlogin && TagsEnabled && TagsInputOnList ) %]
3
4
[% INCLUDE 'doc-head-open.inc' %][% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo;   [% IF ( viewshelf ) %]Contents of [% shelfname |html %][% ELSE %]Your lists[% END %][% INCLUDE 'doc-head-close.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %][% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo;   [% IF ( viewshelf ) %]Contents of [% shelfname |html %][% ELSE %]Your lists[% END %][% INCLUDE 'doc-head-close.inc' %]
5
<script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.checkboxes.min.js"></script>
5
<script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.checkboxes.min.js"></script>
6
<script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.tablesorter.min.js"></script>
6
<script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.tablesorter.min.js"></script>
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-showreviews.tt (-1 / +1 lines)
Lines 1-5 Link Here
1
[% USE Koha %]
1
[% USE KohaDates %]
2
[% USE KohaDates %]
2
3
[% INCLUDE 'doc-head-open.inc' %][% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo; Recent comments
3
[% INCLUDE 'doc-head-open.inc' %][% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo; Recent comments
4
[% INCLUDE 'doc-head-close.inc' %]
4
[% INCLUDE 'doc-head-close.inc' %]
5
<link rel="alternate" type="application/rss+xml" title="[% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog recent comments" href="[% OPACBaseURL %]/cgi-bin/koha/opac-showreviews.pl?format=rss" />
5
<link rel="alternate" type="application/rss+xml" title="[% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog recent comments" href="[% OPACBaseURL %]/cgi-bin/koha/opac-showreviews.pl?format=rss" />
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-suggestions.tt (+1 lines)
Lines 1-3 Link Here
1
[% USE Koha %]
1
[% USE KohaAuthorisedValues %]
2
[% USE KohaAuthorisedValues %]
2
[% INCLUDE 'doc-head-open.inc' %][% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo;
3
[% INCLUDE 'doc-head-open.inc' %][% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo;
3
[% IF ( op_add ) %]Enter a new purchase suggestion[% END %]
4
[% IF ( op_add ) %]Enter a new purchase suggestion[% END %]
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-tags.tt (-1 / +1 lines)
Lines 1-5 Link Here
1
[% USE Koha %]
1
[% USE KohaDates %]
2
[% USE KohaDates %]
2
3
[% INCLUDE 'doc-head-open.inc' %][% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo; Tags
3
[% INCLUDE 'doc-head-open.inc' %][% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo; Tags
4
[% INCLUDE 'doc-head-close.inc' %]
4
[% INCLUDE 'doc-head-close.inc' %]
5
<script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.tablesorter.min.js"></script>
5
<script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.tablesorter.min.js"></script>
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-tags_subject.tt (+1 lines)
Lines 1-3 Link Here
1
[% USE Koha %]
1
[% INCLUDE 'doc-head-open.inc' %][% LibraryNameTitle or "Koha online" %] catalog &rsaquo;  ISBD
2
[% INCLUDE 'doc-head-open.inc' %][% LibraryNameTitle or "Koha online" %] catalog &rsaquo;  ISBD
2
[% INCLUDE 'doc-head-close.inc' %]
3
[% INCLUDE 'doc-head-close.inc' %]
3
</head>
4
</head>
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-topissues.tt (+1 lines)
Lines 1-3 Link Here
1
[% USE Koha %]
1
[% INCLUDE 'doc-head-open.inc' %][% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo; Most popular titles
2
[% INCLUDE 'doc-head-open.inc' %][% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo; Most popular titles
2
[% INCLUDE 'doc-head-close.inc' %]
3
[% INCLUDE 'doc-head-close.inc' %]
3
<script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.tablesorter.min.js"></script>
4
<script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.tablesorter.min.js"></script>
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-user.tt (-2 / +1 lines)
Lines 1-5 Link Here
1
[% USE Koha %]
1
[% USE KohaDates %]
2
[% USE KohaDates %]
2
3
[% INCLUDE 'doc-head-open.inc' %]
3
[% INCLUDE 'doc-head-open.inc' %]
4
[% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo; Your library home
4
[% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo; Your library home
5
[% INCLUDE 'doc-head-close.inc' %]
5
[% INCLUDE 'doc-head-close.inc' %]
6
- 

Return to bug 10552