### Eclipse Workspace Patch 1.0
#P system
Index: src/lib/product/Daemon/Bugzilla.pm.in
===================================================================
RCS file: /projects/scmbug/cvsroot/system/src/lib/product/Daemon/Bugzilla.pm.in,v
retrieving revision 1.44
diff -u -r1.44 Bugzilla.pm.in
--- src/lib/product/Daemon/Bugzilla.pm.in	15 Oct 2007 20:55:20 -0000	1.44
+++ src/lib/product/Daemon/Bugzilla.pm.in	9 Nov 2007 05:52:15 -0000
@@ -250,10 +250,8 @@
     # and we use them in a placeholder below.
     trick_taint($comment);
     my $privacyval = $isprivate ? 1 : 0 ;
-    $dbh->do(q{INSERT INTO longdescs
-                      (bug_id, who, bug_when, thetext, isprivate, work_time)
-               VALUES (?,?,?,?,?,?)}, undef,
-             ($bugid, $whoid, $timestamp, $comment, $privacyval, $work_time));
+    $dbh->do("INSERT INTO longdescs (bug_id, who, bug_when, thetext, isprivate, work_time) VALUES (?,?,?,?,?,?)", 
+        undef, ($bugid, $whoid, $timestamp, $comment, $privacyval, $work_time));
     $dbh->do("UPDATE bugs SET delta_ts = ? WHERE bug_id = ?",
 	     undef, ($timestamp, $bugid));
 }
