From 998cc6bc2be3c3ced4d2663830368673796f644b Mon Sep 17 00:00:00 2001 From: rangi Date: Fri, 5 Nov 2004 00:08:22 +0000 Subject: [PATCH] Fixing bug that was stopping subject maintenance working --- C4/Maintainance.pm | 2 -- 1 file changed, 2 deletions(-) diff --git a/C4/Maintainance.pm b/C4/Maintainance.pm index a2d555644c..43d0434a1e 100644 --- a/C4/Maintainance.pm +++ b/C4/Maintainance.pm @@ -112,8 +112,6 @@ bibliosubject table of the Koha database. sub updatesub{ my ($sub,$oldsub)=@_; my $dbh = C4::Context->dbh; - $sub=$dbh->quote($sub); - $oldsub=$dbh->quote($oldsub); my $sth=$dbh->prepare("update bibliosubject set subject=? where subject=?"); $sth->execute($sub,$oldsub); $sth->finish; -- 2.20.1