Revision 4076 hat bei den Funktionen quote und unquote dafür gesorgt, dass nur "1...
[kivitendo-erp.git] / SL / Form.pm
index 456cd2e..d2f8cb2 100644 (file)
@@ -403,9 +403,9 @@ sub quote {
     $str =~ s/\"/"/g;
   }
 
-  $str;
-
   $main::lxdebug->leave_sub();
+
+  return $str;
 }
 
 sub unquote {
@@ -416,9 +416,9 @@ sub unquote {
     $str =~ s/"/\"/g;
   }
 
-  $str;
-
   $main::lxdebug->leave_sub();
+
+  return $str;
 }
 
 sub hide_form {