Tomas Cohen Arazi
69fb1be22d
This patch fixes the value of a hidden input that was mistakenly changed and prevents search all headings from working. To test: 1. Open the authorities section in the OPAC 2. Choose the 'Search all headings' tab 3. Search for 'a' => FAIL: No results 4. Empty the search box, and make sure 'Search all headings' is selected => SUCCESS: There are authority records 5. Apply this patch 6. Reload the page 7. Retry 3 and 4 => SUCCESS: Searching is back! 8. Sign off :-D Sponsored-by: Asociación Latinoamericana de Integración Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> Signed-off-by: Victor Grousset/tuxayo <victor@tuxayo.net> Signed-off-by: Lucas Gass <lucas@bywatersolutions.com> Signed-off-by: Nick Clemens <nick@bywatersolutions.com> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
235 lines
11 KiB
HTML
235 lines
11 KiB
HTML
<div class="gradient">
|
|
<h1 id="logo"><a href="/cgi-bin/koha/mainpage.pl">[% LibraryName | html %]</a></h1>
|
|
<!-- Begin Authorities Resident Search Box -->
|
|
<div id="header_search" class="residentsearch">
|
|
<div id="mainmain_heading" class="residentsearch">
|
|
<form action="/cgi-bin/koha/authorities/authorities-home.pl" method="get">
|
|
<label class="tip" for="value_mainentry">Enter main heading ($a only):</label>
|
|
<input type="hidden" name="op" value="do_search" />
|
|
<input type="hidden" name="type" value="intranet" />
|
|
<select name="authtypecode" id="authtype_main_heading_a">
|
|
[% IF (marcflavour == 'UNIMARC' ) %]<option value="">All authority types</option>[% END %]
|
|
[% FOREACH authority_type IN authority_types %]
|
|
[% IF authority_type.authtypecode == authtypecode %]
|
|
<option value="[% authority_type.authtypecode | html %]" selected="selected">[% authority_type.authtypetext | html %]</option>
|
|
[% ELSE %]
|
|
<option value="[% authority_type.authtypecode | html %]">[% authority_type.authtypetext | html %]</option>
|
|
[% END %]
|
|
[% END %]
|
|
</select>
|
|
<input type="hidden" name="marclist" value="mainmainentry" />
|
|
<input type="hidden" name="and_or" value="and" />
|
|
<input type="hidden" name="excluding" value="" />
|
|
<select name="operator">
|
|
[% IF ( operator == 'contains' ) %]
|
|
<option value="contains" selected="selected">contains</option>
|
|
[% ELSE %]
|
|
<option value="contains">contains</option>
|
|
[% END %]
|
|
[% IF ( operator == 'start' ) %]
|
|
<option value="start" selected="selected">starts with</option>
|
|
[% ELSE %]
|
|
<option value="start">starts with</option>
|
|
[% END %]
|
|
[% IF ( operator == 'exact' ) %]
|
|
<option value="exact" selected="selected">is exactly</option>
|
|
[% ELSE %]
|
|
<option value="exact">is exactly</option>
|
|
[% END %]
|
|
</select>
|
|
<input id="value_mainentry" type="text" name="value" value="[% value | html %]" class="head-searchbox" />
|
|
<select name="orderby">
|
|
[% IF ( orderby == 'HeadingAsc' ) %]
|
|
<option value="HeadingAsc" selected="selected">Heading A-Z</option>
|
|
[% ELSE %]
|
|
<option value="HeadingAsc">Heading A-Z</option>
|
|
[% END %]
|
|
[% IF ( orderby == 'HeadingDsc' ) %]
|
|
<option value="HeadingDsc" selected="selected">Heading Z-A</option>
|
|
[% ELSE %]
|
|
<option value="HeadingDsc">Heading Z-A</option>
|
|
[% END %]
|
|
[% IF ( orderby == '' && op ) %]
|
|
<option value="" selected="selected">None</option>
|
|
[% ELSE %]
|
|
<option value="">None</option>
|
|
[% END %]
|
|
</select>
|
|
<input type="submit" class="submit" value="Submit" />
|
|
</form>
|
|
</div>
|
|
<div id="main_heading" class="residentsearch">
|
|
<form action="/cgi-bin/koha/authorities/authorities-home.pl" method="get">
|
|
<label class="tip" for="value_mainheading">Enter main heading:</label>
|
|
<input type="hidden" name="op" value="do_search" />
|
|
<input type="hidden" name="type" value="intranet" />
|
|
<select name="authtypecode" id="authtype_main_heading">
|
|
[% IF (marcflavour == 'UNIMARC' ) %]<option value="">All authority types</option>[% END %]
|
|
[% FOREACH authority_type IN authority_types %]
|
|
[% IF authority_type.authtypecode == authtypecode %]
|
|
<option value="[% authority_type.authtypecode | html %]" selected="selected">[% authority_type.authtypetext | html %]</option>
|
|
[% ELSE %]
|
|
<option value="[% authority_type.authtypecode | html %]">[% authority_type.authtypetext | html %]</option>
|
|
[% END %]
|
|
[% END %]
|
|
</select>
|
|
<input type="hidden" name="marclist" value="mainentry" />
|
|
<input type="hidden" name="and_or" value="and" />
|
|
<input type="hidden" name="excluding" value="" />
|
|
<select name="operator">
|
|
[% IF ( operator == 'contains' ) %]
|
|
<option value="contains" selected="selected">contains</option>
|
|
[% ELSE %]
|
|
<option value="contains">contains</option>
|
|
[% END %]
|
|
[% IF ( operator == 'start' ) %]
|
|
<option value="start" selected="selected">starts with</option>
|
|
[% ELSE %]
|
|
<option value="start">starts with</option>
|
|
[% END %]
|
|
[% IF ( operator == 'exact' ) %]
|
|
<option value="exact" selected="selected">is exactly</option>
|
|
[% ELSE %]
|
|
<option value="exact">is exactly</option>
|
|
[% END %]
|
|
</select>
|
|
<input id="value_mainheading" type="text" name="value" value="[% value | html %]" class="head-searchbox" />
|
|
<select name="orderby">
|
|
[% IF ( orderby == 'HeadingAsc' ) %]
|
|
<option value="HeadingAsc" selected="selected">Heading A-Z</option>
|
|
[% ELSE %]
|
|
<option value="HeadingAsc">Heading A-Z</option>
|
|
[% END %]
|
|
[% IF ( orderby == 'HeadingDsc' ) %]
|
|
<option value="HeadingDsc" selected="selected">Heading Z-A</option>
|
|
[% ELSE %]
|
|
<option value="HeadingDsc">Heading Z-A</option>
|
|
[% END %]
|
|
[% IF ( orderby == '' && op ) %]
|
|
<option value="" selected="selected">None</option>
|
|
[% ELSE %]
|
|
<option value="">None</option>
|
|
[% END %]
|
|
</select>
|
|
<input type="submit" class="submit" value="Submit" />
|
|
</form>
|
|
</div>
|
|
<div id="matchheading_search" class="residentsearch">
|
|
<form action="/cgi-bin/koha/authorities/authorities-home.pl" method="get">
|
|
<label class="tip" for="value_matchheading">Enter any heading:</label>
|
|
<input type="hidden" name="op" value="do_search" />
|
|
<input type="hidden" name="type" value="intranet" />
|
|
<select name="authtypecode" id="authtype_all_headings">
|
|
[% IF (marcflavour == 'UNIMARC' ) %]<option value="">All authority types</option>[% END %]
|
|
[% FOREACH authority_type IN authority_types %]
|
|
[% IF authority_type.authtypecode == authtypecode %]
|
|
<option value="[% authority_type.authtypecode | html %]" selected="selected">[% authority_type.authtypetext | html %]</option>
|
|
[% ELSE %]
|
|
<option value="[% authority_type.authtypecode | html %]">[% authority_type.authtypetext | html %]</option>
|
|
[% END %]
|
|
[% END %]
|
|
</select>
|
|
<input type="hidden" name="marclist" value="match" />
|
|
<select name="operator">
|
|
[% IF ( operator == 'contains' ) %]
|
|
<option value="contains" selected="selected">contains</option>
|
|
[% ELSE %]
|
|
<option value="contains">contains</option>
|
|
[% END %]
|
|
[% IF ( operator == 'start' ) %]
|
|
<option value="start" selected="selected">starts with</option>
|
|
[% ELSE %]
|
|
<option value="start">starts with</option>
|
|
[% END %]
|
|
[% IF ( operator == 'exact' ) %]
|
|
<option value="exact" selected="selected">is exactly</option>
|
|
[% ELSE %]
|
|
<option value="exact">is exactly</option>
|
|
[% END %]
|
|
</select>
|
|
<input id="value_matchheading" type="text" name="value" value="[% value | html %]" class="head-searchbox" />
|
|
<select name="orderby">
|
|
[% IF ( orderby == 'HeadingAsc' ) %]
|
|
<option value="HeadingAsc" selected="selected">Heading A-Z</option>
|
|
[% ELSE %]
|
|
<option value="HeadingAsc">Heading A-Z</option>
|
|
[% END %]
|
|
[% IF ( orderby == 'HeadingDsc' ) %]
|
|
<option value="HeadingDsc" selected="selected">Heading Z-A</option>
|
|
[% ELSE %]
|
|
<option value="HeadingDsc">Heading Z-A</option>
|
|
[% END %]
|
|
[% IF ( orderby == '' && op ) %]
|
|
<option value="" selected="selected">None</option>
|
|
[% ELSE %]
|
|
<option value="">None</option>
|
|
[% END %]
|
|
</select>
|
|
<input type="submit" class="submit" value="Submit" />
|
|
</form>
|
|
</div>
|
|
<div id="entire_record" class="residentsearch">
|
|
<form action="/cgi-bin/koha/authorities/authorities-home.pl" method="get">
|
|
<label class="tip" for="value_anywhere">Enter any authority field:</label>
|
|
<input type="hidden" name="op" value="do_search" />
|
|
<input type="hidden" name="type" value="intranet" />
|
|
<select name="authtypecode" id="authtype_entire_record">
|
|
[% IF (marcflavour == 'UNIMARC' ) %]<option value="">All authority types</option>[% END %]
|
|
[% FOREACH authority_type IN authority_types %]
|
|
[% IF authority_type.authtypecode == authtypecode %]
|
|
<option value="[% authority_type.authtypecode | html %]" selected="selected">[% authority_type.authtypetext | html %]</option>
|
|
[% ELSE %]
|
|
<option value="[% authority_type.authtypecode | html %]">[% authority_type.authtypetext | html %]</option>
|
|
[% END %]
|
|
[% END %]
|
|
</select>
|
|
<input type="hidden" name="marclist" value="all" />
|
|
<input type="hidden" name="and_or" value="and" />
|
|
<input type="hidden" name="excluding" value="" />
|
|
<select name="operator">
|
|
[% IF ( operator == 'contains' ) %]
|
|
<option value="contains" selected="selected">contains</option>
|
|
[% ELSE %]
|
|
<option value="contains">contains</option>
|
|
[% END %]
|
|
[% IF ( operator == 'start' ) %]
|
|
<option value="start" selected="selected">starts with</option>
|
|
[% ELSE %]
|
|
<option value="start">starts with</option>
|
|
[% END %]
|
|
[% IF ( operator == 'exact' ) %]
|
|
<option value="exact" selected="selected">is exactly</option>
|
|
[% ELSE %]
|
|
<option value="exact">is exactly</option>
|
|
[% END %]
|
|
</select>
|
|
<input id="value_anywhere" type="text" name="value" value="[% value | html %]" class="head-searchbox" />
|
|
<select name="orderby">
|
|
[% IF ( orderby == 'HeadingAsc' ) %]
|
|
<option value="HeadingAsc" selected="selected">Heading A-Z</option>
|
|
[% ELSE %]
|
|
<option value="HeadingAsc">Heading A-Z</option>
|
|
[% END %]
|
|
[% IF ( orderby == 'HeadingDsc' ) %]
|
|
<option value="HeadingDsc" selected="selected">Heading Z-A</option>
|
|
[% ELSE %]
|
|
<option value="HeadingDsc">Heading Z-A</option>
|
|
[% END %]
|
|
[% IF ( orderby == '' && op ) %]
|
|
<option value="" selected="selected">None</option>
|
|
[% ELSE %]
|
|
<option value="">None</option>
|
|
[% END %]
|
|
</select>
|
|
<input type="submit" class="submit" value="Submit" />
|
|
</form>
|
|
</div>
|
|
<ul>
|
|
<li><a class="keep_text" href="#mainmain_heading">Search main heading ($a only)</a></li>
|
|
<li><a class="keep_text" href="#main_heading">Search main heading</a></li>
|
|
<li><a class="keep_text" href="#matchheading_search">Search all headings</a></li>
|
|
<li><a class="keep_text" href="#entire_record">Search entire record</a></li>
|
|
</ul>
|
|
</div><!-- /header_search -->
|
|
</div><!-- /gradient -->
|
|
<!-- End Authorities Resident Search Box -->
|