]> git.mxchange.org Git - friendica.git/commitdiff
Fix: Groups can now be deleted again
authorMichael <heluecht@pirati.ca>
Sat, 24 Mar 2018 07:26:57 +0000 (07:26 +0000)
committerMichael <heluecht@pirati.ca>
Sat, 24 Mar 2018 07:26:57 +0000 (07:26 +0000)
src/Model/Group.php

index 9e472a7ade5f378a34f189dfff997cfb23f72437..558e145ab79e48a64b925dec4475669af03d6e0f 100644 (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;
                }