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 600-606 Link Here
600
    [% IF ( outer_sup_results_loo.inner_sup_results_loop ) %]
600
    [% IF ( outer_sup_results_loo.inner_sup_results_loop ) %]
601
        [% outer_sup_results_loo.servername | html %]
601
        [% outer_sup_results_loo.servername | html %]
602
        [% FOREACH inner_sup_results_loo IN outer_sup_results_loo.inner_sup_results_loop %]
602
        [% FOREACH inner_sup_results_loo IN outer_sup_results_loo.inner_sup_results_loop %]
603
        <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>
603
        <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>
604
        [% END %]
604
        [% END %]
605
    [% END %]
605
    [% END %]
606
<!-- </div> -->
606
<!-- </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 1088-1094 Link Here
1088
                                [% END %]
1088
                                [% END %]
1089
                            </li>
1089
                            </li>
1090
                            [%# busc is already URI encoded %]
1090
                            [%# busc is already URI encoded %]
1091
                            <li class="back_results"><a href="opac-search.pl?[% busc | uri %]" title="Back to the results search list">Back to results</a></li>
1091
                            <li class="back_results"><a href="opac-search.pl?[% busc | $raw %]" title="Back to the results search list">Back to results</a></li>
1092
                            <li class="right_results">
1092
                            <li class="right_results">
1093
                                [% IF ( nextBiblionumber ) %]
1093
                                [% IF ( nextBiblionumber ) %]
1094
                                    <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>
1094
                                    <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
[% SET AdlibrisEnabled = Koha.Preference('AdlibrisCoversEnabled') %]
4
[% SET AdlibrisEnabled = Koha.Preference('AdlibrisCoversEnabled') %]
4
[% SET AdlibrisURL = Koha.Preference('AdlibrisCoversURL') %]
5
[% SET AdlibrisURL = Koha.Preference('AdlibrisCoversURL') %]
Lines 22-29 Link Here
22
      xmlns:atom="http://www.w3.org/2005/Atom">
23
      xmlns:atom="http://www.w3.org/2005/Atom">
23
   <channel>
24
   <channel>
24
     <title><![CDATA[[% LibraryName | html %] Search [% IF ( query_desc ) %]for '[% query_desc | html %]'[% END %][% IF ( limit_desc ) %] with limit(s): '[% limit_desc | html %]'[% END %]]]></title>
25
     <title><![CDATA[[% LibraryName | html %] Search [% IF ( query_desc ) %]for '[% query_desc | html %]'[% END %][% IF ( limit_desc ) %] with limit(s): '[% limit_desc | html %]'[% END %]]]></title>
25
     <link>[% OPACBaseURL | html %]/cgi-bin/koha/opac-search.pl?[% query_cgi | html %][% limit_cgi | html %]&amp;format=rss2</link>
26
     <link>[% OPACBaseURL | html %]/cgi-bin/koha/opac-search.pl?[% query_cgi | $raw %][% limit_cgi | url %]&amp;format=rss2</link>
26
     <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"/>
27
     <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"/>
27
     <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>
28
     <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>
28
     <opensearch:totalResults>[% total | html %]</opensearch:totalResults>
29
     <opensearch:totalResults>[% total | html %]</opensearch:totalResults>
29
     <opensearch:startIndex>[% offset | html %]</opensearch:startIndex>
30
     <opensearch:startIndex>[% offset | html %]</opensearch:startIndex>
Lines 33-39 Link Here
33
       <opensearch:itemsPerPage>20</opensearch:itemsPerPage>
34
       <opensearch:itemsPerPage>20</opensearch:itemsPerPage>
34
     [% END %]
35
     [% END %]
35
	 [% FOREACH SEARCH_RESULT IN SEARCH_RESULTS %]
36
	 [% FOREACH SEARCH_RESULT IN SEARCH_RESULTS %]
36
     <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"/>
37
     <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"/>
37
     <opensearch:Query role="request" searchTerms="[% SEARCH_RESULT.query_desc |uri %][% SEARCH_RESULT.limit_desc |uri %]" startPage="[% SEARCH_RESULT.page | html %]" />
38
     <opensearch:Query role="request" searchTerms="[% SEARCH_RESULT.query_desc |uri %][% SEARCH_RESULT.limit_desc |uri %]" startPage="[% SEARCH_RESULT.page | html %]" />
38
     <item>
39
     <item>
39
       <title>[% SEARCH_RESULT.title | html %] [% FOREACH subtitl IN SEARCH_RESULT.subtitle %], [% subtitl.subfield | html %][% END %]</title>
40
       <title>[% SEARCH_RESULT.title | html %] [% FOREACH subtitl IN SEARCH_RESULT.subtitle %], [% subtitl.subfield | html %][% END %]</title>
Lines 74-82 Link Here
74
[% IF ( atom ) %]
75
[% IF ( atom ) %]
75
<feed xmlns="http://www.w3.org/2005/Atom"
76
<feed xmlns="http://www.w3.org/2005/Atom"
76
       xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1/">
77
       xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1/">
77
   <id>[% OPACBaseURL | html %]/cgi-bin/koha/opac-search.pl?[% query_cgi | html %][% limit_cgi | html %]&amp;format=atom</id>
78
   <id>[% OPACBaseURL | html %]/cgi-bin/koha/opac-search.pl?[% query_cgi | $raw %][% limit_cgi | html %]&amp;format=atom</id>
78
   <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>
79
   <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>
79
    <link href="[% OPACBaseURL | url %]/cgi-bin/koha/opac-search.pl?[% query_cgi |uri %][% limit_cgi |uri %]&amp;format=rss2"/>
80
    <link href="[% OPACBaseURL | url %]/cgi-bin/koha/opac-search.pl?[% query_cgi | $raw %][% limit_cgi | url %]&amp;format=rss2"/>
80
   <updated>[% timestamp | html %]</updated>
81
   <updated>[% timestamp | html %]</updated>
81
   <author>
82
   <author>
82
     <name>[% LibraryName | html %]</name>
83
     <name>[% LibraryName | html %]</name>
Lines 90-101 Link Here
90
     <opensearch:itemsPerPage>20</opensearch:itemsPerPage>
91
     <opensearch:itemsPerPage>20</opensearch:itemsPerPage>
91
   [% END %]
92
   [% END %]
92
   <opensearch:Query role="request" searchTerms="[% query_desc | html %] [% limit_desc | html %]" startPage="[% page | html %]" />
93
   <opensearch:Query role="request" searchTerms="[% query_desc | html %] [% limit_desc | html %]" startPage="[% page | html %]" />
93
   <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"/>
94
   <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"/>
94
   <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"/>
95
   <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"/>
95
   <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"/>
96
   <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"/>
96
   <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"/>
97
   <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"/>
97
   <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"/>
98
   <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"/>
98
   <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"/>
99
   <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"/>
99
   <link rel="search" type="application/opensearchdescription+xml" href="[% OPACBaseURL | url %]/cgi-bin/koha/opac-search.pl?format=opensearchdescription"/>
100
   <link rel="search" type="application/opensearchdescription+xml" href="[% OPACBaseURL | url %]/cgi-bin/koha/opac-search.pl?format=opensearchdescription"/>
100
101
101
   [% FOREACH SEARCH_RESULT IN SEARCH_RESULTS %]
102
   [% FOREACH SEARCH_RESULT IN SEARCH_RESULTS %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-results-grouped.tt (-2 / +1 lines)
Lines 12-19 Link Here
12
[% END %]</title>
12
[% END %]</title>
13
[% INCLUDE 'doc-head-close.inc' %]
13
[% INCLUDE 'doc-head-close.inc' %]
14
[% BLOCK cssinclude %][% END %]
14
[% BLOCK cssinclude %][% END %]
15
<link rel="alternate" type="application/rss+xml" title="Koha - RSS"
15
<link rel="alternate" type="application/rss+xml" title="Koha - RSS" href="/cgi-bin/koha/opac-rss.pl?[% query_cgi | $raw %][% limit_cgi | url %]" />
16
href="/cgi-bin/koha/opac-rss.pl?[% query_cgi | html %][% limit_cgi | html %]" />
17
16
18
</head>
17
</head>
19
[% INCLUDE 'bodytag.inc' bodyid='results-grouped' %]
18
[% INCLUDE 'bodytag.inc' bodyid='results-grouped' %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-results.tt (-3 / +2 lines)
Lines 45-51 Link Here
45
                        <strong>No results found!</strong>
45
                        <strong>No results found!</strong>
46
                        <p>
46
                        <p>
47
                            [% IF ( searchdesc ) %]
47
                            [% IF ( searchdesc ) %]
48
                                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>
48
                                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>
49
                            [% ELSE %]
49
                            [% ELSE %]
50
                                You did not specify any search criteria.
50
                                You did not specify any search criteria.
51
                            [% END %]
51
                            [% END %]
Lines 89-95 Link Here
89
                                [% END %]
89
                                [% END %]
90
                            ).
90
                            ).
91
                        [% END %]
91
                        [% END %]
92
                        <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>
92
                        <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>
93
                    [% END # / IF total %]
93
                    [% END # / IF total %]
94
                    </p>
94
                    </p>
95
                [% END # / IF searchdesc %]
95
                [% END # / IF searchdesc %]
96
- 

Return to bug 21526