Bug 17602: Handle '60+' if there are more than 60 results
The service returns "60+" if there are more than 60 results. Without this patch the "Found %s results in RecordedBooks collection" line is removed. Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
This commit is contained in:
parent
7ff2b8d5e2
commit
48c0e8952a
1 changed files with 2 additions and 1 deletions
|
@ -913,7 +913,8 @@ $(document).ready(function(){
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( data.total > 0 ) {
|
// data.total can be either 42 or "60+"
|
||||||
|
if ( typeof(data.total) === 'string' && data.total.charAt(0) > 0 || typeof(data.total) === 'number' && data.total > 0 ) {
|
||||||
$recordedbooks_results.html( _( "Found %s results in RecordedBooks collection" ).format('<a href="/cgi-bin/koha/opac-recordedbooks-search.pl?q=' + escape( querystring ) + '">' + data.total + '</a>') );
|
$recordedbooks_results.html( _( "Found %s results in RecordedBooks collection" ).format('<a href="/cgi-bin/koha/opac-recordedbooks-search.pl?q=' + escape( querystring ) + '">' + data.total + '</a>') );
|
||||||
} else {
|
} else {
|
||||||
$recordedbooks_results.remove();
|
$recordedbooks_results.remove();
|
||||||
|
|
Loading…
Reference in a new issue