end of test program sweeps for dictionary lookups via subroutine instead

of object method.
This commit is contained in:
Colin Kuskie 2006-01-15 02:34:50 +00:00
parent 26700d9ac0
commit edfaa153b9
16 changed files with 91 additions and 162 deletions

View file

@ -152,7 +152,8 @@ sub authenticate {
return 1;
}
$self->user(WebGUI::User->new($self->session,1));
$self->error(WebGUI::International::get(68));
my $i18n = WebGUI::International->new($self->session);
$self->error($i18n->get(68));
return 0;
}