Fixing bug that was stopping subject maintenance working
authorrangi <rangi>
Fri, 5 Nov 2004 00:08:22 +0000 (00:08 +0000)
committerrangi <rangi>
Fri, 5 Nov 2004 00:08:22 +0000 (00:08 +0000)
C4/Maintainance.pm

index a2d5556..43d0434 100644 (file)
@@ -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;