Fixed a problem where the group for a page would always be "Admins" if a UI Level was set to less than 9.

This commit is contained in:
JT Smith 2003-01-06 23:57:09 +00:00
parent 1483532536
commit 48c7da7d9f
2 changed files with 2 additions and 1 deletions

View file

@ -659,7 +659,7 @@ sub group {
$output .= _subtext($subtext);
$output = $self->_tableFormRow($label,$output);
} else {
my $hashRef = WebGUI::SQL->quickHashRef("select groupId,groupName from groups");
my $hashRef = WebGUI::SQL->buildHashRef("select groupId,groupName from groups");
$output = WebGUI::Form::hiddenList({
"name"=>$name,
"options"=>$hashRef,