remove use of AUTOLOAD
This commit is contained in:
parent
580193596e
commit
fbca10f617
1 changed files with 2 additions and 2 deletions
|
|
@ -215,12 +215,12 @@ sub www_view {
|
||||||
|
|
||||||
tie my %rpps, "Tie::IxHash";
|
tie my %rpps, "Tie::IxHash";
|
||||||
%rpps = (25 => "25", 50 => "50", 100=>"100");
|
%rpps = (25 => "25", 50 => "50", 100=>"100");
|
||||||
$var->{'contributions_rpp' } = WebGUI::Form::selectBox($session,{
|
$var->{'contributions_rpp' } = WebGUI::Form::SelectBox->new($session,{
|
||||||
name =>"rpp",
|
name =>"rpp",
|
||||||
options => \%rpps,
|
options => \%rpps,
|
||||||
value => $session->form->get("rpp") || 25,
|
value => $session->form->get("rpp") || 25,
|
||||||
extras => q{onchange="location.href='}.$var->{'rpp_url'}.q{;rpp='+this.options[this.selectedIndex].value"}
|
extras => q{onchange="location.href='}.$var->{'rpp_url'}.q{;rpp='+this.options[this.selectedIndex].value"}
|
||||||
});
|
})->toHtml;
|
||||||
|
|
||||||
$self->appendCommonVars($var);
|
$self->appendCommonVars($var);
|
||||||
$p->appendTemplateVars($var);
|
$p->appendTemplateVars($var);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue