From 164581d877475d2e52749148e1d7cbb282fc598c Mon Sep 17 00:00:00 2001 From: tipaul Date: Thu, 4 Sep 2003 17:29:50 +0000 Subject: [PATCH] fixing small bug : escaping twice the ' in title & author. (bugreport from Dombes Abbey) --- acqui/addorder.pl | 2 -- 1 file changed, 2 deletions(-) diff --git a/acqui/addorder.pl b/acqui/addorder.pl index 30b63e301a..381bb59c13 100755 --- a/acqui/addorder.pl +++ b/acqui/addorder.pl @@ -47,9 +47,7 @@ my ($template, $loggedinuser, $cookie) my $existing=$input->param('existing'); my $title=$input->param('title'); -$title=~ s/\'/\\\'/g; my $author=$input->param('author'); -$author=~ s/\'/\\\'/g; my $copyright=$input->param('copyright'); my $isbn=$input->param('ISBN'); my $itemtype=$input->param('format'); -- 2.39.5