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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/authorities_js.inc (-2 / +1 lines)
Lines 49-56 $(document).ready(function () { Link Here
49
    });
49
    });
50
50
51
    $("#delAuth").click(function(){
51
    $("#delAuth").click(function(){
52
        confirm_deletion();
52
        $('.form_delete').submit();
53
        return false;
54
    });
53
    });
55
54
56
    $("#z3950_new").click(function(e){
55
    $("#z3950_new").click(function(e){
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/detail.tt (-1 / +5 lines)
Lines 48-53 Link Here
48
            [% INCLUDE 'messages.inc' %]
48
            [% INCLUDE 'messages.inc' %]
49
49
50
            [% INCLUDE 'authorities-toolbar.inc' %]
50
            [% INCLUDE 'authorities-toolbar.inc' %]
51
            <form action="/cgi-bin/koha/authorities/authorities-home.pl" class="form_delete" method="post">
52
                  [% INCLUDE 'csrf-token.inc' %]
53
                  <input type="hidden" name="op" value="cud-delete"/>
54
                  <input type="hidden" name="authid" value="[% authid | html %]"/>
55
            </form>
51
56
52
            [% IF ( displayhierarchy ) %]
57
            [% IF ( displayhierarchy ) %]
53
                <div id="hierarchies">
58
                <div id="hierarchies">
54
- 

Return to bug 36639