summaryrefslogtreecommitdiff
path: root/fml/lib/FML/Process/CGI
diff options
context:
space:
mode:
authorfukachan <fukachan>2001-11-11 11:05:45 +0000
committerfukachan <fukachan>2001-11-11 11:05:45 +0000
commit13e1ed9bb846416f44c4e22ebc4fb2a827a6b585 (patch)
tree94162672788319a690aa50c95651484f104ef68b /fml/lib/FML/Process/CGI
parentf1a1104b8fcd5b29a4eed0357c38c03eb4182243 (diff)
downloadfml8-13e1ed9bb846416f44c4e22ebc4fb2a827a6b585.tar.gz
fml8-13e1ed9bb846416f44c4e22ebc4fb2a827a6b585.tar.bz2
fml8-13e1ed9bb846416f44c4e22ebc4fb2a827a6b585.zip
allow action =~ /^[-a-z_]+$/
Diffstat (limited to 'fml/lib/FML/Process/CGI')
-rw-r--r--fml/lib/FML/Process/CGI/Param.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/fml/lib/FML/Process/CGI/Param.pm b/fml/lib/FML/Process/CGI/Param.pm
index d219f2fd..202e7538 100644
--- a/fml/lib/FML/Process/CGI/Param.pm
+++ b/fml/lib/FML/Process/CGI/Param.pm
@@ -4,7 +4,7 @@
# All rights reserved. This program is free software; you can
# redistribute it and/or modify it under the same terms as Perl itself.
#
-# $FML: Param.pm,v 1.2 2001/11/09 00:07:10 fukachan Exp $
+# $FML: Param.pm,v 1.3 2001/11/11 01:08:00 fukachan Exp $
#
package FML::Process::CGI::Param;
@@ -44,7 +44,7 @@ It provides basic functions and flow.
my %allow_regexp = (
'address' => '[-a-z0-9_]@[-A-Z0-9\.]+',
'ml_name' => '[-a-z0-9_]+',
- 'action' => '[a-z]+',
+ 'action' => '[-a-z_]+',
'user' => '[-a-z0-9_]+',
'article_id' => '\d+',
);