comparison 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
comparison
equal deleted inserted replaced
145:bd10093bb122 146:60fd224f3e3c
88 } 88 }
89 89
90 sub param { 90 sub param {
91 my ($this,$name,$rx) = @_; 91 my ($this,$name,$rx) = @_;
92 92
93 $this->_launder( $this->query->param($name), $rx ); 93 $this->_launder(scalar( $this->query->param($name) ), $rx );
94 } 94 }
95 95
96 sub _launder { 96 sub _launder {
97 my ($this,$value,$rx) = @_; 97 my ($this,$value,$rx) = @_;
98 98