Mercurial > pub > Impl
diff Lib/IMPL/Web/Application/Action.pm @ 146:60fd224f3e3c
fixed cgi parameters processing
Added parameters inflating feature
Added preprocessed templates, reformatting output
author | wizard |
---|---|
date | Mon, 26 Jul 2010 03:19:06 +0400 |
parents | b56ebc31bf18 |
children | b04e978d6d5a |
line wrap: on
line diff
--- a/Lib/IMPL/Web/Application/Action.pm Wed Jul 21 06:27:12 2010 +0400 +++ b/Lib/IMPL/Web/Application/Action.pm Mon Jul 26 03:19:06 2010 +0400 @@ -90,7 +90,7 @@ sub param { my ($this,$name,$rx) = @_; - $this->_launder( $this->query->param($name), $rx ); + $this->_launder(scalar( $this->query->param($name) ), $rx ); } sub _launder {