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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/searching.pref (-9 / +9 lines)
Lines 99-104 Searching: Link Here
99
            - "List of search fields (separated by | or ,) that should not be autotruncated by Elasticsearch even if <a href='/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=QueryAutoTruncate'>QueryAutoTruncate</a> is set to 'Yes':"
99
            - "List of search fields (separated by | or ,) that should not be autotruncated by Elasticsearch even if <a href='/cgi-bin/koha/admin/preferences.pl?op=search&searchfield=QueryAutoTruncate'>QueryAutoTruncate</a> is set to 'Yes':"
100
            - pref: ESPreventAutoTruncate
100
            - pref: ESPreventAutoTruncate
101
              class: long
101
              class: long
102
        -
103
            - pref: OPACDisplayRecordCount
104
              type: boolean
105
              default: 0
106
              choices:
107
                  1: Show
108
                  0: "Don't show"
109
            - the number of records next to search links in the bibliographic record detail page in the OPAC.
102
    Search form:
110
    Search form:
103
        -
111
        -
104
            - pref: LoadSearchHistoryToTheFirstLoggedUser
112
            - pref: LoadSearchHistoryToTheFirstLoggedUser
Lines 356-367 Searching: Link Here
356
            - LIBRIS base URL
364
            - LIBRIS base URL
357
            - pref: LibrisURL
365
            - pref: LibrisURL
358
              class: url
366
              class: url
359
            - "Please only change this if you are sure it needs changing."
367
            - "Please only change this if you are sure it needs changing."
360
        -
361
            - pref: OPACDisplayRecordCount
362
              type: boolean
363
              default: 0
364
              choices:
365
                  1: Show
366
                  0: "Don't show"
367
            - the number of records next to search links in the bibliographic record detail page in the OPAC.
(-)a/koha-tmpl/opac-tmpl/bootstrap/js/opac-display-record-count.js (-3 / +4 lines)
Lines 7-13 var es_builder = { Link Here
7
    'Provider' : 'provider',
7
    'Provider' : 'provider',
8
    'se,phr' : 'title-series',
8
    'se,phr' : 'title-series',
9
    'au' : 'author',
9
    'au' : 'author',
10
    'su,complete-subfield' : 'subject'
10
    'su,complete-subfield' : 'subject',
11
    'su' : 'subject',
12
    'copydate': 'copydate',
11
}
13
}
12
var not_symbols = {
14
var not_symbols = {
13
    '\'':'%27',
15
    '\'':'%27',
Lines 63-69 function NumberResultsRecord(){ Link Here
63
    url: url_request + JSON.stringify(json_data) + '&key=' + key_display,
65
    url: url_request + JSON.stringify(json_data) + '&key=' + key_display,
64
    success: function (data) {
66
    success: function (data) {
65
        jQuery.each( all_link, function( i, val ) {
67
        jQuery.each( all_link, function( i, val ) {
66
            $(val).after("&nbsp;<span style=\"color:black\"><b>["+data[i]+"]</b></span>");
68
            $(val).after("&nbsp;<span style=\"color:black\"><b>["+data[i].value+"]</b></span>");
67
        });
69
        });
68
    },
70
    },
69
    error: function (data) {
71
    error: function (data) {
70
- 

Return to bug 27428