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:
2aaa83f
)
Form::redirect muss auch Zahlen in Scriptnamen zulassen, weil ansonsten z.B. menuv3...
author
Moritz Bunkus
<m.bunkus@linet-services.de>
Tue, 10 Jul 2007 08:35:09 +0000
(08:35 +0000)
committer
Moritz Bunkus
<m.bunkus@linet-services.de>
Tue, 10 Jul 2007 08:35:09 +0000
(08:35 +0000)
SL/Form.pm
patch
|
blob
|
history
diff --git
a/SL/Form.pm
b/SL/Form.pm
index
d1dbfb6
..
c62c8ad
100644
(file)
--- a/
SL/Form.pm
+++ b/
SL/Form.pm
@@
-692,7
+692,7
@@
sub redirect {
($script, $argv) = split(/\?/, $self->{callback}, 2);
$script =~ s|.*/||;
- $script =~ s|[^a-zA-Z_\.]||g;
+ $script =~ s|[^a-zA-Z
0-9
_\.]||g;
exec("perl", "$script", $argv);
} else {