in reply to •Re: Puzzling CGI behavior
in thread Puzzling CGI behavior
ormy %webobj = ( 'template' => param('template') || '', 'minscale' => param('minscale') || '' );
From Randal's comment it seems the latter would be the wiser choice.my %webobj = ( 'template' => scalar(param('template')), 'minscale' => scalar(param('minscale')) );
|
|---|