- fix: Asset menu
- fix: Event Manager - can't add event - fix: v6.99.1, security: Spectre listens to INADDR_ANY (profo) - fix: Manage groups in this group doesn't work - Fixed a problem where the not found page would not display. - fix: New page layout instead of not found
This commit is contained in:
parent
2e1de9d214
commit
16bd394434
8 changed files with 76 additions and 20 deletions
|
|
@ -149,7 +149,7 @@ sub walkGroups {
|
|||
.$session->icon->delete('op=deleteGroupGrouping;gid='.$parentId.';delete='.$id)
|
||||
.$session->icon->edit('op=editGroup;gid='.$id)
|
||||
.' '.$name.'<br />';
|
||||
$output .= $session->walkGroups($id,$indent." ");
|
||||
$output .= walkGroups($session, $id,$indent." ");
|
||||
}
|
||||
$sth->finish;
|
||||
return $output;
|
||||
|
|
@ -159,7 +159,7 @@ sub walkGroups {
|
|||
sub www_addGroupsToGroupSave {
|
||||
my $session = shift;
|
||||
return $session->privilege->adminOnly() unless ($session->user->isInGroup(3) || _hasSecondaryPrivilege($session,$session->form->process("gid")));
|
||||
my $group = WebGUI::Group->new($session,$_[0]);
|
||||
my $group = WebGUI::Group->new($session,$session->form->process("gid"));
|
||||
my @groups = $session->form->group('groups');
|
||||
$group->addGroups(\@groups);
|
||||
return www_manageGroupsInGroup($session);
|
||||
|
|
@ -635,7 +635,7 @@ sub www_manageGroupsInGroup {
|
|||
$f->submit;
|
||||
my $output = $f->print;
|
||||
$output .= '<p />';
|
||||
$output .= $session->walkGroups($session->form->process("gid"));
|
||||
$output .= walkGroups($session, $session->form->process("gid"));
|
||||
return _submenu($session,$output,'813');
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue