remove use of AUTOLOAD

This commit is contained in:
Doug Bell 2010-12-21 14:30:17 -06:00
parent 580193596e
commit fbca10f617

View file

@ -215,12 +215,12 @@ sub www_view {
tie my %rpps, "Tie::IxHash";
%rpps = (25 => "25", 50 => "50", 100=>"100");
$var->{'contributions_rpp' } = WebGUI::Form::selectBox($session,{
$var->{'contributions_rpp' } = WebGUI::Form::SelectBox->new($session,{
name =>"rpp",
options => \%rpps,
value => $session->form->get("rpp") || 25,
extras => q{onchange="location.href='}.$var->{'rpp_url'}.q{;rpp='+this.options[this.selectedIndex].value"}
});
})->toHtml;
$self->appendCommonVars($var);
$p->appendTemplateVars($var);