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

(-)a/api/v1/swagger/paths/acquisitions_baskets.yaml (+1 lines)
Lines 23-28 Link Here
23
          type: string
23
          type: string
24
          enum:
24
          enum:
25
            - extended_attributes
25
            - extended_attributes
26
            - library
26
        collectionFormat: csv
27
        collectionFormat: csv
27
    produces:
28
    produces:
28
      - application/json
29
      - application/json
(-)a/api/v1/swagger/paths/acquisitions_funds.yaml (+2 lines)
Lines 83-88 Link Here
83
          type: string
83
          type: string
84
          enum:
84
          enum:
85
            - extended_attributes
85
            - extended_attributes
86
            - library
86
        collectionFormat: csv
87
        collectionFormat: csv
87
    produces:
88
    produces:
88
      - application/json
89
      - application/json
Lines 135-140 Link Here
135
          type: string
136
          type: string
136
          enum:
137
          enum:
137
            - extended_attributes
138
            - extended_attributes
139
            - library
138
        collectionFormat: csv
140
        collectionFormat: csv
139
    produces:
141
    produces:
140
      - application/json
142
      - application/json
(-)a/api/v1/swagger/paths/erm_users.yaml (+1 lines)
Lines 23-28 Link Here
23
          type: string
23
          type: string
24
          enum:
24
          enum:
25
            - extended_attributes
25
            - extended_attributes
26
            - library
26
        collectionFormat: csv
27
        collectionFormat: csv
27
    produces:
28
    produces:
28
      - application/json
29
      - application/json
(-)a/api/v1/swagger/paths/suggestions.yaml (+1 lines)
Lines 260-265 Link Here
260
          type: string
260
          type: string
261
          enum:
261
          enum:
262
            - extended_attributes
262
            - extended_attributes
263
            - library
263
        collectionFormat: csv
264
        collectionFormat: csv
264
    produces:
265
    produces:
265
      - application/json
266
      - application/json
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/js-patron-format.inc (-1 / +1 lines)
Lines 37-43 Link Here
37
            }
37
            }
38
38
39
            if ( name.replace(' ', '').length == 0 ) {
39
            if ( name.replace(' ', '').length == 0 ) {
40
                return _("A patron from library %s".format(patron.library.name));
40
                return _("A patron from %s".format(patron.library.name));
41
            }
41
            }
42
42
43
            if ( config && config.hide_patron_name ) {
43
            if ( config && config.hide_patron_name ) {
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search.inc (-2 / +1 lines)
Lines 381-387 Link Here
381
                [% default_sort_column = "name" %]
381
                [% default_sort_column = "name" %]
382
            [% END %]
382
            [% END %]
383
            [% SET order_column_index = 0 %]
383
            [% SET order_column_index = 0 %]
384
            [% SET embed = ['extended_attributes'] %]
384
            [% SET embed = ['extended_attributes','library'] %]
385
            patrons_table = $("#[% table_id | html %]").kohaTable({
385
            patrons_table = $("#[% table_id | html %]").kohaTable({
386
                "ajax": {
386
                "ajax": {
387
                    "url": patron_search_url,
387
                    "url": patron_search_url,
388
- 

Return to bug 37368