From 3aae3709a67da5479454dc46bd1d88a17b17b8b5 Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Mon, 11 May 2009 09:40:16 +0000 Subject: [PATCH] =?utf8?q?Revision=204076=20hat=20bei=20den=20Funktionen?= =?utf8?q?=20quote=20und=20unquote=20daf=C3=BCr=20gesorgt,=20dass=20nur=20?= =?utf8?q?"1"=20zur=C3=BCckgegeben=20wird,=20weil=20die=20lxdebug-Anweisun?= =?utf8?q?gen=20vor=20dem=20impliziten=20Return=20standen.=20Fix=20f=C3=BC?= =?utf8?q?r=20Bug=20964.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- SL/Form.pm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 { -- 2.20.1