From: Moritz Bunkus Date: Mon, 11 May 2009 09:40:16 +0000 (+0000) Subject: Revision 4076 hat bei den Funktionen quote und unquote dafür gesorgt, dass nur "1... X-Git-Tag: release-2.6.0rc1~100 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=3aae3709a67da5479454dc46bd1d88a17b17b8b5;p=kivitendo-erp.git Revision 4076 hat bei den Funktionen quote und unquote dafür gesorgt, dass nur "1" zurückgegeben wird, weil die lxdebug-Anweisungen vor dem impliziten Return standen. Fix für Bug 964. --- diff --git a/SL/Form.pm b/SL/Form.pm index 456cd2e59..d2f8cb2e7 100644 --- a/SL/Form.pm +++ b/SL/Form.pm @@ -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 {