tons of bug fixes.

This commit is contained in:
Matthew Wilson 2006-01-18 14:41:12 +00:00
parent 6f112057bb
commit 2069da5fdb
15 changed files with 76 additions and 61 deletions

View file

@ -141,7 +141,7 @@ sub toHtmlWithWrapper {
my $self = shift;
if ($self->session->user->isInGroup(3)) {
my $subtext = $self->session->icon->manage("op=listGroups");
$self->get("subtext") = $subtext . $self->get("subtext");
$self->set("subtext",$subtext . $self->get("subtext"));
}
return $self->SUPER::toHtmlWithWrapper;
}

View file

@ -139,7 +139,7 @@ sub setManageIcons {
}
my $buttons = $self->session->icon->edit("func=edit".$returnUrl,$template->get("url"));
$buttons .= $self->session->icon->manage("func=manageAssets",$template->getParent->get("url"));
$self->get("subtext") = $buttons . $self->get("subtext");
$self->set("subtext",$buttons . $self->get("subtext"));
}
}