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

(-)a/Koha/SearchEngine/Elasticsearch/Browse.pm (+8 lines)
Lines 302-307 sub _build_query_count_record { Link Here
302
    return $query;
302
    return $query;
303
}
303
}
304
304
305
=head2 count_record
306
307
  $result = $browser->count_record($ses);
308
309
Return an arrayref of record counts
310
311
=cut
312
305
sub count_record {
313
sub count_record {
306
    my ($self, $cgi_q) = @_;
314
    my ($self, $cgi_q) = @_;
307
    my @results_return;
315
    my @results_return;
(-)a/koha-tmpl/opac-tmpl/bootstrap/js/opac-display-record-count.js (-2 / +1 lines)
Lines 46-52 var not_symbols = { Link Here
46
46
47
function NumberResultsRecord(){
47
function NumberResultsRecord(){
48
48
49
    var regex = `a[href*="${regex_es_link}"]`;
49
    var regex = 'a[href*="${' + regex_es_link + '}"]';
50
    var all_link = $(regex);
50
    var all_link = $(regex);
51
    /* array json data to server */
51
    /* array json data to server */
52
    var json_data=[];
52
    var json_data=[];
53
- 

Return to bug 27428