]> git.mxchange.org Git - friendica.git/commitdiff
Merge remote-tracking branch 'upstream/develop' into dbstructure-class
authorMichael <heluecht@pirati.ca>
Thu, 14 Dec 2017 21:42:26 +0000 (21:42 +0000)
committerMichael <heluecht@pirati.ca>
Thu, 14 Dec 2017 21:42:26 +0000 (21:42 +0000)
include/api.php
mod/group.php

index 8a29c82dd8a4174f4a60da9ae786320b23b57847..52910d47273bba9c3e89aa70d84a58e7fa419702 100644 (file)
@@ -4783,7 +4783,7 @@ function api_friendica_group_create($type)
                        intval($uid)
                );
                if (count($contact))
-                       $result = Group::create_member($uid, $name, $cid, $gid);
+                       $result = Group::addMember($gid, $cid);
                else {
                        $erroraddinguser = true;
                        $errorusers[] = $cid;
@@ -4846,7 +4846,7 @@ function api_friendica_group_update($type)
                );
 
                if (count($contact)) {
-                       $result = Group::create_member($uid, $name, $cid, $gid);
+                       $result = Group::addMember($gid, $cid);
                } else {
                        $erroraddinguser = true;
                        $errorusers[] = $cid;
index ba7c24c56a375aa35a05d51d0e975013fad8531a..8a6e9309f1f87aea7e326e704e5264c39bc73ded 100644 (file)
@@ -174,7 +174,7 @@ function group_content(App $a) {
                        if (in_array($change, $preselected)) {
                                Group::removeMember($group['id'], $change);
                        } else {
-                               Group::create_member(local_user(), $group['name'], $change);
+                               Group::addMember($group['id'], $change);
                        }
 
                        $members = Contact::getByGroupId($group['id']);