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 116-121 Searching: Link Here
116
            - "<pre>ccode: [REF,ARC]</pre><br/>  - would mark all REF and ARC collections (Reference and Archives) items as unavailable in Z3950 results.<br/><br/>"
116
            - "<pre>ccode: [REF,ARC]</pre><br/>  - would mark all REF and ARC collections (Reference and Archives) items as unavailable in Z3950 results.<br/><br/>"
117
            - "You can define multiple keys and values, items meeting ANY of the criteria will be marked unavailable:<br/><br/>"
117
            - "You can define multiple keys and values, items meeting ANY of the criteria will be marked unavailable:<br/><br/>"
118
            - "<pre>itype: [REF]<br/>holdingbranch: [REPAIR]</pre><br/>  - would mark all reference items AND items at the REPAIR branch as unavailable."
118
            - "<pre>itype: [REF]<br/>holdingbranch: [REPAIR]</pre><br/>  - would mark all reference items AND items at the REPAIR branch as unavailable."
119
        -
120
            - pref: OPACDisplayRecordCount
121
              type: boolean
122
              default: 0
123
              choices:
124
                  1: Show
125
                  0: "Don't show"
126
            - the number of records next to search links in the bibliographic record detail page in the OPAC.
119
    Search form:
127
    Search form:
120
        -
128
        -
121
            - pref: LoadSearchHistoryToTheFirstLoggedUser
129
            - pref: LoadSearchHistoryToTheFirstLoggedUser
Lines 373-384 Searching: Link Here
373
            - LIBRIS base URL
381
            - LIBRIS base URL
374
            - pref: LibrisURL
382
            - pref: LibrisURL
375
              class: url
383
              class: url
376
            - "Please only change this if you are sure it needs changing."
384
            - "Please only change this if you are sure it needs changing."
377
        -
378
            - pref: OPACDisplayRecordCount
379
              type: boolean
380
              default: 0
381
              choices:
382
                  1: Show
383
                  0: "Don't show"
384
            - 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