X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=members%2Fsetdebar.pl;h=bc0bafbe52c0491eefef330f3d5b113747078bad;hb=493dcede4891be13e2742b2169b5579d71ad0d40;hp=55a35ee658901ceb271bb6ebb94ed9dd1bd276f5;hpb=aae0efd051a8c2bedfeaf01267df02520b3dde2e;p=koha.git diff --git a/members/setdebar.pl b/members/setdebar.pl index 55a35ee658..bc0bafbe52 100755 --- a/members/setdebar.pl +++ b/members/setdebar.pl @@ -1,6 +1,7 @@ #!/usr/bin/perl # Copyright 2000-2002 Katipo Communications +# Parts copyright 2011 BibLibre # # This file is part of Koha. # @@ -13,9 +14,9 @@ # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR # A PARTICULAR PURPOSE. See the GNU General Public License for more details. # -# You should have received a copy of the GNU General Public License along with -# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, -# Suite 330, Boston, MA 02111-1307 USA +# You should have received a copy of the GNU General Public License along +# with Koha; if not, write to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. =head1 setdebar.pl @@ -40,22 +41,13 @@ $flagsrequired->{borrowers} = 1; my ( $loggedinuser, $cookie, $sessionID ) = checkauth( $input, 0, $flagsrequired ); -my $destination = $input->param("destination") || ''; -my $cardnumber = $input->param("cardnumber"); my $borrowernumber = $input->param('borrowernumber'); -my $status = $input->param('status'); my $dbh = C4::Context->dbh; my $sth = - $dbh->prepare("Update borrowers set debarred = ? where borrowernumber = ?"); -$sth->execute( $status, $borrowernumber ); + $dbh->prepare("Update borrowers set debarred = NULL where borrowernumber = ?"); +$sth->execute( $borrowernumber ); $sth->finish; -if ( $destination eq "circ" ) { - print $input->redirect( - "/cgi-bin/koha/circ/circulation.pl?findborrower=".$cardnumber); -} -else { - print $input->redirect( - "/cgi-bin/koha/members/moremember.pl?borrowernumber=$borrowernumber"); -} +print $input->redirect( + "/cgi-bin/koha/members/moremember.pl?borrowernumber=$borrowernumber");