dump_query Parameter initialisieren.
authorSven Schöling <s.schoeling@linet-services.de>
Mon, 16 Aug 2010 09:09:05 +0000 (11:09 +0200)
committerSven Schöling <s.schoeling@linet-services.de>
Mon, 16 Aug 2010 09:09:05 +0000 (11:09 +0200)
SL/DBUtils.pm

index e0a362f..4a4ac25 100644 (file)
@@ -84,7 +84,7 @@ sub dump_query {
   }
 
   while ($query =~ /\?/) {
-    my $value = shift(@_);
+    my $value = shift || '';
     $value =~ s/\'/\\\'/g;
     $value = "'${value}'";
     $query =~ s/\?/$value/;