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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-opensearch.tt (-2 / +2 lines)
Lines 38-44 Link Here
38
     <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 %]" />
39
     <item>
39
     <item>
40
       <title>[% INCLUDE 'biblio-title-head.inc' biblio=SEARCH_RESULT %]</title>
40
       <title>[% INCLUDE 'biblio-title-head.inc' biblio=SEARCH_RESULT %]</title>
41
       <dc:identifier>ISBN [% SEARCH_RESULT.isbn | html %]</dc:identifier>
41
       <dc:identifier>ISBN:[% SEARCH_RESULT.isbn | html %]</dc:identifier>
42
        [% IF ( SEARCH_RESULT.BiblioDefaultViewmarc ) %]
42
        [% IF ( SEARCH_RESULT.BiblioDefaultViewmarc ) %]
43
        <link>[% OPACBaseURL | url %]/cgi-bin/koha/opac-MARCdetail.pl?biblionumber=[% SEARCH_RESULT.biblionumber | uri %]</link>
43
        <link>[% OPACBaseURL | url %]/cgi-bin/koha/opac-MARCdetail.pl?biblionumber=[% SEARCH_RESULT.biblionumber | uri %]</link>
44
        [% ELSIF ( SEARCH_RESULT.BiblioDefaultViewisbd ) %]
44
        [% ELSIF ( SEARCH_RESULT.BiblioDefaultViewisbd ) %]
Lines 83-89 Link Here
83
       xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1/">
83
       xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1/">
84
   <id>[% OPACBaseURL | url %]/cgi-bin/koha/opac-search.pl?[% query_cgi | html %][% limit_cgi | html %]&amp;format=atom</id>
84
   <id>[% OPACBaseURL | url %]/cgi-bin/koha/opac-search.pl?[% query_cgi | html %][% limit_cgi | html %]&amp;format=atom</id>
85
   <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>
85
   <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>
86
    <link href="[% OPACBaseURL | url %]/cgi-bin/koha/opac-search.pl?[% query_cgi | html %][% limit_cgi | html %]&amp;format=rss2"/>
86
    <link href="[% OPACBaseURL | url %]/cgi-bin/koha/opac-search.pl?[% query_cgi | html %][% limit_cgi | html %]&amp;format=rss"/>
87
   <updated>[% timestamp | html %]</updated>
87
   <updated>[% timestamp | html %]</updated>
88
   <author>
88
   <author>
89
     <name>[% LibraryName | html %]</name>
89
     <name>[% LibraryName | html %]</name>
(-)a/opac/opac-search.pl (-2 / +1 lines)
Lines 119-125 else { Link Here
119
    $template_type = 'advsearch';
119
    $template_type = 'advsearch';
120
}
120
}
121
121
122
$format = 'rss' if $format =~ /rss/;
122
$format = 'rss' if $format =~ /^rss2?$/;
123
123
124
# load the template
124
# load the template
125
($template, $borrowernumber, $cookie) = get_template_and_user({
125
($template, $borrowernumber, $cookie) = get_template_and_user({
126
- 

Return to bug 16111