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

(-)a/cataloguing/addbiblio.pl (-2 / +2 lines)
Lines 736-746 if ($frameworkcode eq 'FA'){ Link Here
736
        'stickyduedate'      => $fa_stickyduedate,
736
        'stickyduedate'      => $fa_stickyduedate,
737
        'duedatespec'        => $fa_duedatespec,
737
        'duedatespec'        => $fa_duedatespec,
738
    );
738
    );
739
} elsif ( C4::Context->preference('EnableAdvancedCatalogingEditor') && $input->cookie( 'catalogue_editor_' . $loggedinuser ) eq 'advanced' && !$breedingid ) {
739
} elsif ( $op ne "delete" && C4::Context->preference('EnableAdvancedCatalogingEditor') && $input->cookie( 'catalogue_editor_' . $loggedinuser ) eq 'advanced' && !$breedingid ) {
740
    # Only use the advanced editor for non-fast-cataloging.
740
    # Only use the advanced editor for non-fast-cataloging.
741
    # breedingid is not handled because those would only come off a Z39.50
741
    # breedingid is not handled because those would only come off a Z39.50
742
    # search initiated by the basic editor.
742
    # search initiated by the basic editor.
743
    print $input->redirect( '/cgi-bin/koha/cataloguing/editor.pl' . ( $biblionumber ? ( '#catalog/' . $biblionumber ) : '' ) );
743
    print $input->redirect( '/cgi-bin/koha/cataloguing/editor.pl' . ( $biblionumber ? ( '#catalog/' . $biblionumber ) : '' ) );
744
    exit;
744
}
745
}
745
746
746
my $frameworkcodeloop = Koha::BiblioFrameworks->search({}, { order_by => ['frameworktext'] });
747
my $frameworkcodeloop = Koha::BiblioFrameworks->search({}, { order_by => ['frameworktext'] });
747
- 

Return to bug 16358