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

(-)a/C4/Biblio.pm (-2 / +2 lines)
Lines 3264-3272 sub _koha_delete_biblio_metadata { Link Here
3264
3264
3265
=head1 UNEXPORTED FUNCTIONS
3265
=head1 UNEXPORTED FUNCTIONS
3266
3266
3267
=head2 Update005Time
3267
=head2 UpdateMarcTimestamp
3268
3268
3269
  &Update005Time( $record );
3269
  &UpdateMarcTimestamp( $record );
3270
3270
3271
Updates the 005 timestamp of the given record to the current time.
3271
Updates the 005 timestamp of the given record to the current time.
3272
3272
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/cateditor-ui.inc (-6 / +5 lines)
Lines 41-48 require( [ 'koha-backend', 'search', 'macros', 'marc-editor', 'marc-record', 'pr Link Here
41
            checked: false,
41
            checked: false,
42
        },
42
        },
43
        [%- FOREACH batch = editable_batches -%]
43
        [%- FOREACH batch = editable_batches -%]
44
            'batch:[% batch.import_batch_id %]': {
44
            'batch:[% batch.import_batch_id | $raw %]': {
45
                name: _("Batch: ") + `[% batch.file_name %]`,
45
                name: _("Batch: ") + `[% batch.file_name | html %]`,
46
                recordtype: 'biblio',
46
                recordtype: 'biblio',
47
                checked: false,
47
                checked: false,
48
            },
48
            },
Lines 324-331 require( [ 'koha-backend', 'search', 'macros', 'marc-editor', 'marc-record', 'pr Link Here
324
324
325
    var editable_batches = {
325
    var editable_batches = {
326
        [%- FOREACH batch = editable_batches -%]
326
        [%- FOREACH batch = editable_batches -%]
327
            [% batch.import_batch_id %]: {
327
            [% batch.import_batch_id | $raw %]: {
328
                'name': `[% batch.file_name %]`,
328
                'name': `[% batch.file_name | html %]`,
329
            },
329
            },
330
        [%- END -%]
330
        [%- END -%]
331
    };
331
    };
Lines 804-810 require( [ 'koha-backend', 'search', 'macros', 'marc-editor', 'marc-record', 'pr Link Here
804
                $( document ).on( 'change', 'input.save-toggle-target', function() {
804
                $( document ).on( 'change', 'input.save-toggle-target', function() {
805
                    var target_id = $( this ).data('target-id');
805
                    var target_id = $( this ).data('target-id');
806
                    Preferences.user.selected_save_targets[target_id] = this.checked;
806
                    Preferences.user.selected_save_targets[target_id] = this.checked;
807
                    Preferences.Save( [% loggelogged_in_user.borrowernumber %] );
807
                    Preferences.Save( [% loggelogged_in_user.borrowernumber | $raw %] );
808
                } );
808
                } );
809
                break;
809
                break;
810
            case 'selected_search_targets':
810
            case 'selected_search_targets':
811
- 

Return to bug 18823