Revision 4076 hat bei den Funktionen quote und unquote dafür gesorgt, dass nur "1...
authorMoritz Bunkus <m.bunkus@linet-services.de>
Mon, 11 May 2009 09:40:16 +0000 (09:40 +0000)
committerMoritz Bunkus <m.bunkus@linet-services.de>
Mon, 11 May 2009 09:40:16 +0000 (09:40 +0000)
SL/Form.pm

index 456cd2e..d2f8cb2 100644 (file)
@@ -403,9 +403,9 @@ sub quote {
     $str =~ s/\"/&quot;/g;
   }
 
-  $str;
-
   $main::lxdebug->leave_sub();
+
+  return $str;
 }
 
 sub unquote {
@@ -416,9 +416,9 @@ sub unquote {
     $str =~ s/&quot;/\"/g;
   }
 
-  $str;
-
   $main::lxdebug->leave_sub();
+
+  return $str;
 }
 
 sub hide_form {