projects
/
kivitendo-erp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
52dd34a
)
Revision 4076 hat bei den Funktionen quote und unquote dafür gesorgt, dass nur "1...
author
Moritz Bunkus
<m.bunkus@linet-services.de>
Mon, 11 May 2009 09:40:16 +0000
(09:40 +0000)
committer
Moritz Bunkus
<m.bunkus@linet-services.de>
Mon, 11 May 2009 09:40:16 +0000
(09:40 +0000)
SL/Form.pm
patch
|
blob
|
history
diff --git
a/SL/Form.pm
b/SL/Form.pm
index
456cd2e
..
d2f8cb2
100644
(file)
--- 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 {