Fix: Groups can now be deleted again

This commit is contained in:
Michael 2018-03-24 07:26:57 +00:00
parent c01c0681c0
commit 07a1796e8f
1 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@ class Group extends BaseObject
// was restricted to this group may now be seen by the new group members.
$group = dba::selectFirst('group', ['deleted'], ['id' => $gid]);
if (DBM::is_result($group) && $group['deleted']) {
dba::update('group', ['deleted' => 0], ['gid' => $gid]);
dba::update('group', ['deleted' => 0], ['id' => $gid]);
notice(L10n::t('A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name.') . EOL);
}
return true;
@ -138,7 +138,7 @@ class Group extends BaseObject
return false;
}
$group = dba::selectFirst('group', ['uid'], ['gid' => $gid]);
$group = dba::selectFirst('group', ['uid'], ['id' => $gid]);
if (!DBM::is_result($group)) {
return false;
}