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

(-)a/C4/Biblio.pm (-2 / +2 lines)
Lines 3092-3100 sub _koha_delete_biblio_metadata { Link Here
3092
3092
3093
=head1 UNEXPORTED FUNCTIONS
3093
=head1 UNEXPORTED FUNCTIONS
3094
3094
3095
=head2 Update005Time
3095
=head2 UpdateMarcTimestamp
3096
3096
3097
  &Update005Time( $record );
3097
  &UpdateMarcTimestamp( $record );
3098
3098
3099
Updates the 005 timestamp of the given record to the current time.
3099
Updates the 005 timestamp of the given record to the current time.
3100
3100
(-)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 349-356 require( [ 'koha-backend', 'search', 'macros', 'marc-editor', 'marc-record', 'pr Link Here
349
349
350
    var editable_batches = {
350
    var editable_batches = {
351
        [%- FOREACH batch = editable_batches -%]
351
        [%- FOREACH batch = editable_batches -%]
352
            [% batch.import_batch_id %]: {
352
            [% batch.import_batch_id | $raw %]: {
353
                'name': `[% batch.file_name %]`,
353
                'name': `[% batch.file_name | html %]`,
354
            },
354
            },
355
        [%- END -%]
355
        [%- END -%]
356
    };
356
    };
Lines 829-835 require( [ 'koha-backend', 'search', 'macros', 'marc-editor', 'marc-record', 'pr Link Here
829
                $( document ).on( 'change', 'input.save-toggle-target', function() {
829
                $( document ).on( 'change', 'input.save-toggle-target', function() {
830
                    var target_id = $( this ).data('target-id');
830
                    var target_id = $( this ).data('target-id');
831
                    Preferences.user.selected_save_targets[target_id] = this.checked;
831
                    Preferences.user.selected_save_targets[target_id] = this.checked;
832
                    Preferences.Save( [% loggelogged_in_user.borrowernumber %] );
832
                    Preferences.Save( [% loggelogged_in_user.borrowernumber | $raw %] );
833
                } );
833
                } );
834
                break;
834
                break;
835
            case 'selected_search_targets':
835
            case 'selected_search_targets':
836
- 

Return to bug 18823