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

(-)a/C4/Biblio.pm (-2 / +2 lines)
Lines 3080-3088 sub _koha_delete_biblio_metadata { Link Here
3080
3080
3081
=head1 UNEXPORTED FUNCTIONS
3081
=head1 UNEXPORTED FUNCTIONS
3082
3082
3083
=head2 Update005Time
3083
=head2 UpdateMarcTimestamp
3084
3084
3085
  &Update005Time( $record );
3085
  &UpdateMarcTimestamp( $record );
3086
3086
3087
Updates the 005 timestamp of the given record to the current time.
3087
Updates the 005 timestamp of the given record to the current time.
3088
3088
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/cateditor-ui.inc (-6 / +5 lines)
Lines 48-55 require( [ 'koha-backend', 'search', 'macros', 'marc-editor', 'marc-record', 'pr Link Here
48
            checked: false,
48
            checked: false,
49
        },
49
        },
50
        [%- FOREACH batch = editable_batches -%]
50
        [%- FOREACH batch = editable_batches -%]
51
            'batch:[% batch.import_batch_id %]': {
51
            'batch:[% batch.import_batch_id | $raw %]': {
52
                name: _("Batch: ") + `[% batch.file_name %]`,
52
                name: _("Batch: ") + `[% batch.file_name | html %]`,
53
                recordtype: 'biblio',
53
                recordtype: 'biblio',
54
                checked: false,
54
                checked: false,
55
            },
55
            },
Lines 347-354 require( [ 'koha-backend', 'search', 'macros', 'marc-editor', 'marc-record', 'pr Link Here
347
347
348
    var editable_batches = {
348
    var editable_batches = {
349
        [%- FOREACH batch = editable_batches -%]
349
        [%- FOREACH batch = editable_batches -%]
350
            [% batch.import_batch_id %]: {
350
            [% batch.import_batch_id | $raw %]: {
351
                'name': `[% batch.file_name %]`,
351
                'name': `[% batch.file_name | html %]`,
352
            },
352
            },
353
        [%- END -%]
353
        [%- END -%]
354
    };
354
    };
Lines 827-833 require( [ 'koha-backend', 'search', 'macros', 'marc-editor', 'marc-record', 'pr Link Here
827
                $( document ).on( 'change', 'input.save-toggle-target', function() {
827
                $( document ).on( 'change', 'input.save-toggle-target', function() {
828
                    var target_id = $( this ).data('target-id');
828
                    var target_id = $( this ).data('target-id');
829
                    Preferences.user.selected_save_targets[target_id] = this.checked;
829
                    Preferences.user.selected_save_targets[target_id] = this.checked;
830
                    Preferences.Save( [% loggelogged_in_user.borrowernumber %] );
830
                    Preferences.Save( [% loggelogged_in_user.borrowernumber | $raw %] );
831
                } );
831
                } );
832
                break;
832
                break;
833
            case 'selected_search_targets':
833
            case 'selected_search_targets':
834
- 

Return to bug 18823