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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/facets.inc (-6 / +7 lines)
Lines 1-3 Link Here
1
[% USE raw %]
1
[% USE AuthorisedValues %]
2
[% USE AuthorisedValues %]
2
[% IF ( opacfacets ) %]
3
[% IF ( opacfacets ) %]
3
[% IF ( facets_loop ) %]
4
[% IF ( facets_loop ) %]
Lines 25-42 Link Here
25
<ul>
26
<ul>
26
  [% SET url = "/cgi-bin/koha/catalogue/search.pl?" _ query_cgi _ limit_cgi %]
27
  [% SET url = "/cgi-bin/koha/catalogue/search.pl?" _ query_cgi _ limit_cgi %]
27
  [% IF ( sort_by ) %]
28
  [% IF ( sort_by ) %]
28
    [% url = BLOCK %][% url | html %][% "&amp;sort_by=" _ sort_by |url %][% END %]
29
    [% url = BLOCK %][% url | $raw %][% "&sort_by=" _ sort_by | url %][% END %]
29
  [% END %]
30
  [% END %]
30
  [% FOREACH facet IN facets_loo.facets %]
31
  [% FOREACH facet IN facets_loo.facets %]
31
  [% IF facets_loo.type_label_CollectionCodes %][% SET facet.facet_label_value = AuthorisedValues.GetByCode('CCODE',facet.facet_label_value,0) || facet.facet_label_value %][% END %]
32
  [% IF facets_loo.type_label_CollectionCodes %][% SET facet.facet_label_value = AuthorisedValues.GetByCode('CCODE',facet.facet_label_value,0) || facet.facet_label_value %][% END %]
32
    <li>
33
    <li>
33
      [% IF facet.active %]
34
      [% IF facet.active %]
34
        [% SET local_url = url _ "&amp;nolimit=" _ facet.type_link_value _ ":" _ facet.facet_link_value %]
35
        [% local_url = BLOCK %][% url | $raw %][% "&nolimit=" _  facet.type_link_value _ ":" _ facet.facet_link_value | url %][% END %]
35
        <span class="facet-label">[% facet.facet_label_value | html %]</span>
36
        <span class="facet-label">[% facet.facet_label_value | html %]</span>
36
        [<a href="[% local_url | url %]" title="Remove facet [% facet.facet_link_value | html %]">x</a>]
37
        [<a href="[% local_url | $raw %]" title="Remove facet [% facet.facet_link_value | html %]">x</a>]
37
      [% ELSE %]
38
      [% ELSE %]
38
        [% SET local_url = url _ "&amp;limit=" _ facet.type_link_value _ ":" _ facet.facet_link_value %]
39
        [% local_url = BLOCK %][% url | $raw %][% "&limit=" _  facet.type_link_value _ ":" _ facet.facet_link_value | url %][% END %]
39
        <span class="facet-label"><a href="[% local_url | url %]" title="[% facet.facet_title_value | html %]">[% facet.facet_label_value | html %]</a></span>
40
        <span class="facet-label"><a href="[% local_url | $raw %]" title="[% facet.facet_title_value | html %]">[% facet.facet_label_value | html %]</a></span>
40
        [% IF ( displayFacetCount ) %]
41
        [% IF ( displayFacetCount ) %]
41
          <span class="facet-count"> ([% facet.facet_count | html %])</span>
42
          <span class="facet-count"> ([% facet.facet_count | html %])</span>
42
        [% END %]
43
        [% END %]
Lines 45-51 Link Here
45
  [% END %]
46
  [% END %]
46
  [% IF ( facets_loo.expandable ) %]
47
  [% IF ( facets_loo.expandable ) %]
47
      <li class="showmore">
48
      <li class="showmore">
48
          <a href="[% url | url %][% IF offset %]&amp;offset=[% offset |url %][% END %]&amp;expand=[% facets_loo.expand |url %]#[% facets_loo.type_id |url %]">Show more</a>
49
          <a href="[% url | url %][% IF offset %]&amp;offset=[% offset | uri %][% END %]&amp;expand=[% facets_loo.expand | uri %]#[% facets_loo.type_id | uri %]">Show more</a>
49
      </li>
50
      </li>
50
  [% END %]
51
  [% END %]
51
</ul></li>
52
</ul></li>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/results.tt (-1 / +1 lines)
Lines 594-600 Link Here
594
    [% IF ( outer_sup_results_loo.inner_sup_results_loop ) %]
594
    [% IF ( outer_sup_results_loo.inner_sup_results_loop ) %]
595
        [% outer_sup_results_loo.servername | html %]
595
        [% outer_sup_results_loo.servername | html %]
596
        [% FOREACH inner_sup_results_loo IN outer_sup_results_loo.inner_sup_results_loop %]
596
        [% FOREACH inner_sup_results_loo IN outer_sup_results_loo.inner_sup_results_loop %]
597
        <div><a href="/cgi-bin/koha/catalogue/search.pl?[% inner_sup_results_loo.query_cgi | uri %][% inner_sup_results_loo.limit_cgi | uri %][% inner_sup_results_loo.sort_by | uri %][% inner_sup_results_loo.link | uri %]">[% inner_sup_results_loo.title | html %]</a></div>
597
        <div><a href="/cgi-bin/koha/catalogue/search.pl?[% inner_sup_results_loo.query_cgi | $raw %][% inner_sup_results_loo.limit_cgi | uri %][% inner_sup_results_loo.sort_by | uri %][% inner_sup_results_loo.link | uri %]">[% inner_sup_results_loo.title | html %]</a></div>
598
        [% END %]
598
        [% END %]
599
    [% END %]
599
    [% END %]
600
<!-- </div> -->
600
<!-- </div> -->
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/search-history.tt (-4 / +4 lines)
Lines 57-63 Link Here
57
                  <tr>
57
                  <tr>
58
                    <td><input type="checkbox" name="id" value="[% s.id | html %]" /></td>
58
                    <td><input type="checkbox" name="id" value="[% s.id | html %]" /></td>
59
                    <td><span title="[% s.time | html %]">[% s.time |$KohaDates with_hours => 1 | html %]</span></td>
59
                    <td><span title="[% s.time | html %]">[% s.time |$KohaDates with_hours => 1 | html %]</span></td>
60
                    <td><a href="/cgi-bin/koha/catalogue/search.pl?[% s.query_cgi | uri %]">[% s.query_desc | html %]</a></td>
60
                    <td><a href="/cgi-bin/koha/catalogue/search.pl?[% s.query_cgi | url %]">[% s.query_desc | html %]</a></td>
61
                    <td>[% s.total | html %]</td>
61
                    <td>[% s.total | html %]</td>
62
                  </tr>
62
                  </tr>
63
                [% END %]
63
                [% END %]
Lines 94-100 Link Here
94
                  <tr>
94
                  <tr>
95
                    <td><input type="checkbox" name="id" value="[% s.id | html %]" /></td>
95
                    <td><input type="checkbox" name="id" value="[% s.id | html %]" /></td>
96
                    <td><span title="[% s.time | html %]">[% s.time |$KohaDates with_hours => 1 | html %]</span></td>
96
                    <td><span title="[% s.time | html %]">[% s.time |$KohaDates with_hours => 1 | html %]</span></td>
97
                    <td><a href="/cgi-bin/koha/catalogue/search.pl?[% s.query_cgi | uri %]">[% s.query_desc | html %]</a></td>
97
                    <td><a href="/cgi-bin/koha/catalogue/search.pl?[% s.query_cgi | url %]">[% s.query_desc | html %]</a></td>
98
                    <td>[% s.total | html %]</td>
98
                    <td>[% s.total | html %]</td>
99
                  </tr>
99
                  </tr>
100
                [% END %]
100
                [% END %]
Lines 137-143 Link Here
137
                  <tr>
137
                  <tr>
138
                    <td><input type="checkbox" name="id" value="[% s.id | html %]" /></td>
138
                    <td><input type="checkbox" name="id" value="[% s.id | html %]" /></td>
139
                    <td><span title="[% s.time | html %]">[% s.time |$KohaDates with_hours => 1 | html %]</span></td>
139
                    <td><span title="[% s.time | html %]">[% s.time |$KohaDates with_hours => 1 | html %]</span></td>
140
                    <td><a href="/cgi-bin/koha/authorities/authorities-home.pl?[% s.query_cgi | uri %]">[% s.query_desc | html %]</a></td>
140
                    <td><a href="/cgi-bin/koha/authorities/authorities-home.pl?[% s.query_cgi | url %]">[% s.query_desc | html %]</a></td>
141
                    <td>[% s.total | html %]</td>
141
                    <td>[% s.total | html %]</td>
142
                  </tr>
142
                  </tr>
143
                [% END %]
143
                [% END %]
Lines 174-180 Link Here
174
                  <tr>
174
                  <tr>
175
                    <td><input type="checkbox" name="id" value="[% s.id | html %]" /></td>
175
                    <td><input type="checkbox" name="id" value="[% s.id | html %]" /></td>
176
                    <td><span title="[% s.time | html %]">[% s.time |$KohaDates with_hours => 1 | html %]</span></td>
176
                    <td><span title="[% s.time | html %]">[% s.time |$KohaDates with_hours => 1 | html %]</span></td>
177
                    <td><a href="/cgi-bin/koha/authorities/authorities-home.pl?[% s.query_cgi | uri %]">[% s.query_desc | html %]</a></td>
177
                    <td><a href="/cgi-bin/koha/authorities/authorities-home.pl?[% s.query_cgi | url %]">[% s.query_desc | html %]</a></td>
178
                    <td>[% s.total | html %]</td>
178
                    <td>[% s.total | html %]</td>
179
                  </tr>
179
                  </tr>
180
                [% END %]
180
                [% END %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-facets.inc (-6 / +6 lines)
Lines 35-52 Link Here
35
                        <ul>
35
                        <ul>
36
                            [% SET url = "/cgi-bin/koha/opac-search.pl?" _ query_cgi _ limit_cgi %]
36
                            [% SET url = "/cgi-bin/koha/opac-search.pl?" _ query_cgi _ limit_cgi %]
37
                            [% IF ( sort_by ) %]
37
                            [% IF ( sort_by ) %]
38
                              [% url = BLOCK %][% url | html %][% "&amp;sort_by=" _ sort_by |url %][% END %]
38
                              [% url = BLOCK %][% url | $raw %][% "&amp;sort_by=" _ sort_by | url %][% END %]
39
                            [% END %]
39
                            [% END %]
40
                            [% FOREACH facet IN facets_loo.facets %]
40
                            [% FOREACH facet IN facets_loo.facets %]
41
                            [% IF facets_loo.type_label_CollectionCodes %][% SET facet.facet_label_value = AuthorisedValues.GetByCode('CCODE',facet.facet_label_value,1) || facet.facet_label_value %][% END %]
41
                            [% IF facets_loo.type_label_CollectionCodes %][% SET facet.facet_label_value = AuthorisedValues.GetByCode('CCODE',facet.facet_label_value,1) || facet.facet_label_value %][% END %]
42
                                <li>
42
                                <li>
43
                                  [% IF facet.active %]
43
                                  [% IF facet.active %]
44
                                    [% SET local_url = url _ "&amp;nolimit=" _ facet.type_link_value _ ":" _ facet.facet_link_value %]
44
                                    [% local_url = BLOCK %][% url | $raw %][% "&nolimit=" _  facet.type_link_value _ ":" _ facet.facet_link_value | url %][% END %]
45
                                    <span class="facet-label">[% facet.facet_label_value | html %]</span>
45
                                    <span class="facet-label">[% facet.facet_label_value | html %]</span>
46
                                    [<a href="[% local_url | url %]" title="Remove facet [% facet.facet_link_value | html %]">x</a>]
46
                                    [<a href="[% local_url | $raw %]" title="Remove facet [% facet.facet_link_value | html %]">x</a>]
47
                                  [% ELSE %]
47
                                  [% ELSE %]
48
                                    [% SET local_url = url _ "&amp;limit=" _ facet.type_link_value _ ":" _ facet.facet_link_value %]
48
                                    [% local_url = BLOCK %][% url | $raw %][% "&limit=" _  facet.type_link_value _ ":" _ facet.facet_link_value | url %][% END %]
49
                                    <span class="facet-label"><a href="[% local_url | url %]" title="[% facet.facet_title_value | html %]">[% facet.facet_label_value | html %]</a></span>
49
                                    <span class="facet-label"><a href="[% local_url | $raw %]" title="[% facet.facet_title_value | html %]">[% facet.facet_label_value | html %]</a></span>
50
                                    [% IF ( displayFacetCount ) %]
50
                                    [% IF ( displayFacetCount ) %]
51
                                      <span class="facet-count"> ([% facet.facet_count | html %])</span>
51
                                      <span class="facet-count"> ([% facet.facet_count | html %])</span>
52
                                    [% END %]
52
                                    [% END %]
Lines 55-61 Link Here
55
                            [% END %]
55
                            [% END %]
56
                            [% IF ( facets_loo.expandable ) %]
56
                            [% IF ( facets_loo.expandable ) %]
57
                                <li class="showmore">
57
                                <li class="showmore">
58
                                    <a href="[% url | url %][% IF offset %]&amp;offset=[% offset |uri %][% END %]&amp;expand=[% facets_loo.expand |uri %]#[% facets_loo.type_id |uri %]">Show more</a>
58
                                    <a href="[% url | $raw %][% IF offset %]&amp;offset=[% offset | uri %][% END %]&amp;expand=[% facets_loo.expand | uri %]#[% facets_loo.type_id | uri %]">Show more</a>
59
                                </li>
59
                                </li>
60
                            [% END %]
60
                            [% END %]
61
                        </ul>
61
                        </ul>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt (-1 / +1 lines)
Lines 1081-1087 Link Here
1081
                                [% END %]
1081
                                [% END %]
1082
                            </li>
1082
                            </li>
1083
                            [%# busc is already URI encoded %]
1083
                            [%# busc is already URI encoded %]
1084
                            <li class="back_results"><a href="opac-search.pl?[% busc | uri %]" title="Back to the results search list">Back to results</a></li>
1084
                            <li class="back_results"><a href="opac-search.pl?[% busc | $raw %]" title="Back to the results search list">Back to results</a></li>
1085
                            <li class="right_results">
1085
                            <li class="right_results">
1086
                                [% IF ( nextBiblionumber ) %]
1086
                                [% IF ( nextBiblionumber ) %]
1087
                                    <a href="opac-detail.pl?biblionumber=[% nextBiblionumber | uri %][% IF ( query_desc && OpacHighlightedWords ) %]&query_desc=[% query_desc |uri %][% END %]" title="See: [% IF ( nextTitle ) %][% nextTitle | html %][% ELSE %]next biblio[% END %]">Next <i class="fa fa-angle-double-right"></i></a>
1087
                                    <a href="opac-detail.pl?biblionumber=[% nextBiblionumber | uri %][% IF ( query_desc && OpacHighlightedWords ) %]&query_desc=[% query_desc |uri %][% END %]" title="See: [% IF ( nextTitle ) %][% nextTitle | html %][% ELSE %]next biblio[% END %]">Next <i class="fa fa-angle-double-right"></i></a>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-opensearch.tt (-11 / +12 lines)
Lines 1-4 Link Here
1
<?xml version='1.0' encoding='utf-8'  ?>
1
<?xml version='1.0' encoding='utf-8'  ?>
2
[% USE raw %]
2
[% USE Koha %]
3
[% USE Koha %]
3
[% IF ( opensearchdescription ) %]
4
[% IF ( opensearchdescription ) %]
4
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/">
5
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/">
Lines 19-26 Link Here
19
      xmlns:atom="http://www.w3.org/2005/Atom">
20
      xmlns:atom="http://www.w3.org/2005/Atom">
20
   <channel>
21
   <channel>
21
     <title><![CDATA[[% LibraryName | html %] Search [% IF ( query_desc ) %]for '[% query_desc | html %]'[% END %][% IF ( limit_desc ) %] with limit(s): '[% limit_desc | html %]'[% END %]]]></title>
22
     <title><![CDATA[[% LibraryName | html %] Search [% IF ( query_desc ) %]for '[% query_desc | html %]'[% END %][% IF ( limit_desc ) %] with limit(s): '[% limit_desc | html %]'[% END %]]]></title>
22
     <link>[% OPACBaseURL | html %]/cgi-bin/koha/opac-search.pl?[% query_cgi | html %][% limit_cgi | html %]&amp;format=rss2</link>
23
     <link>[% OPACBaseURL | html %]/cgi-bin/koha/opac-search.pl?[% query_cgi | $raw %][% limit_cgi | url %]&amp;format=rss2</link>
23
     <atom:link rel="self" type="application/rss+xml" href="[% OPACBaseURL | url %]/cgi-bin/koha/opac-search.pl?[% query_cgi |uri %][% limit_cgi |uri %]&amp;sort_by=[% sort_by | uri %]&amp;format=rss2"/>
24
     <atom:link rel="self" type="application/rss+xml" href="[% OPACBaseURL | url %]/cgi-bin/koha/opac-search.pl?[% query_cgi | $raw %][% limit_cgi | url %]&amp;sort_by=[% sort_by | uri %]&amp;format=rss2"/>
24
     <description><![CDATA[ Search results [% IF ( query_desc ) %]for '[% query_desc | html %]'[% END %][% IF ( limit_desc ) %] with limit(s): '[% limit_desc | html %]'[% END %] at [% LibraryName | html %]]]></description>
25
     <description><![CDATA[ Search results [% IF ( query_desc ) %]for '[% query_desc | html %]'[% END %][% IF ( limit_desc ) %] with limit(s): '[% limit_desc | html %]'[% END %] at [% LibraryName | html %]]]></description>
25
     <opensearch:totalResults>[% total | html %]</opensearch:totalResults>
26
     <opensearch:totalResults>[% total | html %]</opensearch:totalResults>
26
     <opensearch:startIndex>[% offset | html %]</opensearch:startIndex>
27
     <opensearch:startIndex>[% offset | html %]</opensearch:startIndex>
Lines 30-36 Link Here
30
       <opensearch:itemsPerPage>20</opensearch:itemsPerPage>
31
       <opensearch:itemsPerPage>20</opensearch:itemsPerPage>
31
     [% END %]
32
     [% END %]
32
	 [% FOREACH SEARCH_RESULT IN SEARCH_RESULTS %]
33
	 [% FOREACH SEARCH_RESULT IN SEARCH_RESULTS %]
33
     <atom:link rel="search" type="application/opensearchdescription+xml" href="[% OPACBaseURL | url %]/cgi-bin/koha/opac-search.pl?[% SEARCH_RESULT.query_cgi |uri %][% SEARCH_RESULT.limit_cgi |uri %]&amp;sort_by=[% SEARCH_RESULT.sort_by |uri %]&amp;format=opensearchdescription"/>
34
     <atom:link rel="search" type="application/opensearchdescription+xml" href="[% OPACBaseURL | url %]/cgi-bin/koha/opac-search.pl?[% SEARCH_RESULT.query_cgi | $raw %][% SEARCH_RESULT.limit_cgi | url %]&amp;sort_by=[% SEARCH_RESULT.sort_by |uri %]&amp;format=opensearchdescription"/>
34
     <opensearch:Query role="request" searchTerms="[% SEARCH_RESULT.query_desc |uri %][% SEARCH_RESULT.limit_desc |uri %]" startPage="[% SEARCH_RESULT.page | html %]" />
35
     <opensearch:Query role="request" searchTerms="[% SEARCH_RESULT.query_desc |uri %][% SEARCH_RESULT.limit_desc |uri %]" startPage="[% SEARCH_RESULT.page | html %]" />
35
     <item>
36
     <item>
36
       <title>[% SEARCH_RESULT.title | html %] [% FOREACH subtitl IN SEARCH_RESULT.subtitle %], [% subtitl.subfield | html %][% END %]</title>
37
       <title>[% SEARCH_RESULT.title | html %] [% FOREACH subtitl IN SEARCH_RESULT.subtitle %], [% subtitl.subfield | html %][% END %]</title>
Lines 67-75 Link Here
67
[% IF ( atom ) %]
68
[% IF ( atom ) %]
68
<feed xmlns="http://www.w3.org/2005/Atom"
69
<feed xmlns="http://www.w3.org/2005/Atom"
69
       xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1/">
70
       xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1/">
70
   <id>[% OPACBaseURL | html %]/cgi-bin/koha/opac-search.pl?[% query_cgi | html %][% limit_cgi | html %]&amp;format=atom</id>
71
   <id>[% OPACBaseURL | html %]/cgi-bin/koha/opac-search.pl?[% query_cgi | $raw %][% limit_cgi | html %]&amp;format=atom</id>
71
   <title>[% LibraryName | html %] Search [% IF ( query_desc ) %]for '[% query_desc | html %]'[% END %][% IF ( limit_desc ) %]&nbsp;with limit(s):&nbsp;'[% limit_desc | html %]'[% END %]</title>
72
   <title>[% LibraryName | html %] Search [% IF ( query_desc ) %]for '[% query_desc | html %]'[% END %][% IF ( limit_desc ) %]&nbsp;with limit(s):&nbsp;'[% limit_desc | html %]'[% END %]</title>
72
    <link href="[% OPACBaseURL | url %]/cgi-bin/koha/opac-search.pl?[% query_cgi |uri %][% limit_cgi |uri %]&amp;format=rss2"/>
73
    <link href="[% OPACBaseURL | url %]/cgi-bin/koha/opac-search.pl?[% query_cgi | $raw %][% limit_cgi | url %]&amp;format=rss2"/>
73
   <updated>[% timestamp | html %]</updated>
74
   <updated>[% timestamp | html %]</updated>
74
   <author>
75
   <author>
75
     <name>[% LibraryName | html %]</name>
76
     <name>[% LibraryName | html %]</name>
Lines 83-94 Link Here
83
     <opensearch:itemsPerPage>20</opensearch:itemsPerPage>
84
     <opensearch:itemsPerPage>20</opensearch:itemsPerPage>
84
   [% END %]
85
   [% END %]
85
   <opensearch:Query role="request" searchTerms="[% query_desc | html %] [% limit_desc | html %]" startPage="[% page | html %]" />
86
   <opensearch:Query role="request" searchTerms="[% query_desc | html %] [% limit_desc | html %]" startPage="[% page | html %]" />
86
   <link rel="alternate" href="[% OPACBaseURL | url %]/cgi-bin/koha/opac-search.pl?[% query_cgi | uri %][% limit_cgi | uri %]pw=[% page | uri %]&amp;format=atom" type="application/atom+xml"/>
87
   <link rel="alternate" href="[% OPACBaseURL | url %]/cgi-bin/koha/opac-search.pl?[% query_cgi | $raw %][% limit_cgi | url %]pw=[% page | uri %]&amp;format=atom" type="application/atom+xml"/>
87
   <link rel="self" href="[% OPACBaseURL | url %]/cgi-bin/koha/opac-search.pl?[% query_cgi | uri %][% limit_cgi | uri %]&amp;format=atom" type="application/atom+xml"/>
88
   <link rel="self" href="[% OPACBaseURL | url %]/cgi-bin/koha/opac-search.pl?[% query_cgi | $raw %][% limit_cgi | url %]&amp;format=atom" type="application/atom+xml"/>
88
   <link rel="first" href="[% OPACBaseURL | url %]/cgi-bin/koha/opac-search.pl?[% query_cgi | uri %][% limit_cgi | uri %]pw=1&amp;format=atom" type="application/atom+xml"/>
89
   <link rel="first" href="[% OPACBaseURL | url %]/cgi-bin/koha/opac-search.pl?[% query_cgi | $raw %][% limit_cgi | url %]pw=1&amp;format=atom" type="application/atom+xml"/>
89
   <link rel="previous" href="[% OPACBaseURL | url %]/cgi-bin/koha/opac-search.pl?[% query_cgi | uri %][% limit_cgi | uri %]pw=2&amp;format=atom" type="application/atom+xml"/>
90
   <link rel="previous" href="[% OPACBaseURL | url %]/cgi-bin/koha/opac-search.pl?[% query_cgi | $raw %][% limit_cgi | url %]pw=2&amp;format=atom" type="application/atom+xml"/>
90
   <link rel="next" href="[% OPACBaseURL | url %]/cgi-bin/koha/opac-search.pl?[% query_cgi | uri %][% limit_cgi | uri %]pw=4&amp;format=atom" type="application/atom+xml"/>
91
   <link rel="next" href="[% OPACBaseURL | url %]/cgi-bin/koha/opac-search.pl?[% query_cgi | $raw %][% limit_cgi | url %]pw=4&amp;format=atom" type="application/atom+xml"/>
91
   <link rel="last" href="[% OPACBaseURL | url %]/cgi-bin/koha/opac-search.pl?[% query_cgi | uri %][% limit_cgi | uri %]pw=42299&amp;format=atom" type="application/atom+xml"/>
92
   <link rel="last" href="[% OPACBaseURL | url %]/cgi-bin/koha/opac-search.pl?[% query_cgi | $raw %][% limit_cgi | url %]pw=42299&amp;format=atom" type="application/atom+xml"/>
92
   <link rel="search" type="application/opensearchdescription+xml" href="[% OPACBaseURL | url %]/cgi-bin/koha/opac-search.pl?format=opensearchdescription"/>
93
   <link rel="search" type="application/opensearchdescription+xml" href="[% OPACBaseURL | url %]/cgi-bin/koha/opac-search.pl?format=opensearchdescription"/>
93
94
94
   [% FOREACH SEARCH_RESULT IN SEARCH_RESULTS %]
95
   [% FOREACH SEARCH_RESULT IN SEARCH_RESULTS %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-results-grouped.tt (-2 / +1 lines)
Lines 10-17 Link Here
10
[% END %]</title>
10
[% END %]</title>
11
[% INCLUDE 'doc-head-close.inc' %]
11
[% INCLUDE 'doc-head-close.inc' %]
12
[% BLOCK cssinclude %][% END %]
12
[% BLOCK cssinclude %][% END %]
13
<link rel="alternate" type="application/rss+xml" title="Koha - RSS"
13
<link rel="alternate" type="application/rss+xml" title="Koha - RSS" href="/cgi-bin/koha/opac-rss.pl?[% query_cgi | $raw %][% limit_cgi | url %]" />
14
href="/cgi-bin/koha/opac-rss.pl?[% query_cgi | html %][% limit_cgi | html %]" />
15
14
16
</head>
15
</head>
17
[% INCLUDE 'bodytag.inc' bodyid='results-grouped' %]
16
[% INCLUDE 'bodytag.inc' bodyid='results-grouped' %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-results.tt (-3 / +2 lines)
Lines 43-49 Link Here
43
                        <strong>No results found!</strong>
43
                        <strong>No results found!</strong>
44
                        <p>
44
                        <p>
45
                            [% IF ( searchdesc ) %]
45
                            [% IF ( searchdesc ) %]
46
                                No results found for that in [% LibraryName | html %] catalog. <a href="[% OPACBaseURL | url %]/cgi-bin/koha/opac-search.pl?[% query_cgi | url %][% limit_cgi | url %]&amp;format=rss2" class="rsssearchlink noprint"><img src="[% interface | html %]/[% theme | html %]/images/feed-icon-16x16.png" alt="Subscribe to this search" title="Subscribe to this search" border="0" class="rsssearchicon"/></a>
46
                                No results found for that in [% LibraryName | html %] catalog. <a href="[% OPACBaseURL | url %]/cgi-bin/koha/opac-search.pl?[% query_cgi | $raw %][% limit_cgi | url %]&amp;format=rss2" class="rsssearchlink noprint"><img src="[% interface | html %]/[% theme | html %]/images/feed-icon-16x16.png" alt="Subscribe to this search" title="Subscribe to this search" border="0" class="rsssearchicon"/></a>
47
                            [% ELSE %]
47
                            [% ELSE %]
48
                                You did not specify any search criteria.
48
                                You did not specify any search criteria.
49
                            [% END %]
49
                            [% END %]
Lines 87-93 Link Here
87
                                [% END %]
87
                                [% END %]
88
                            ).
88
                            ).
89
                        [% END %]
89
                        [% END %]
90
                        <a href="[% OPACBaseURL | url %]/cgi-bin/koha/opac-search.pl?[% query_cgi | url %][% limit_cgi | url %]&amp;count=[% countrss | uri %]&amp;sort_by=acqdate_dsc&amp;format=rss2" class="rsssearchlink noprint"><img src="[% interface | html %]/[% theme | html %]/images/feed-icon-16x16.png" alt="Subscribe to this search" title="Subscribe to this search" class="rsssearchicon"/></a>
90
                        <a href="[% OPACBaseURL | url %]/cgi-bin/koha/opac-search.pl?[% query_cgi | $raw %][% limit_cgi | url %]&amp;count=[% countrss | uri %]&amp;sort_by=acqdate_dsc&amp;format=rss2" class="rsssearchlink noprint"><img src="[% interface | html %]/[% theme | html %]/images/feed-icon-16x16.png" alt="Subscribe to this search" title="Subscribe to this search" class="rsssearchicon"/></a>
91
                    [% END # / IF total %]
91
                    [% END # / IF total %]
92
                    </p>
92
                    </p>
93
                [% END # / IF searchdesc %]
93
                [% END # / IF searchdesc %]
94
- 

Return to bug 21526