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

(-)a/C4/AuthoritiesMarc.pm (-2 / +1 lines)
Lines 719-725 sub DelAuthority { Link Here
719
    my $dbh=C4::Context->dbh;
719
    my $dbh=C4::Context->dbh;
720
720
721
    ModZebra($authid,"recordDelete","authorityserver",GetAuthority($authid),undef);
721
    ModZebra($authid,"recordDelete","authorityserver",GetAuthority($authid),undef);
722
    my $sth = prepare("DELETE FROM auth_header WHERE authid=?");
722
    my $sth = $dbh->prepare("DELETE FROM auth_header WHERE authid=?");
723
    $sth->execute($authid);
723
    $sth->execute($authid);
724
}
724
}
725
725
726
- 

Return to bug 1953