]> git.mxchange.org Git - friendica.git/blobdiff - mod/contactgroup.php
Merge pull request #3985 from hoergen/develop
[friendica.git] / mod / contactgroup.php
index 2a44e2889655d33254819aefe2a711391c5f6232..0c2d6a0cbec1f9292f296e42d3ba22360c0e87a6 100644 (file)
@@ -1,6 +1,7 @@
 <?php
 
 use Friendica\App;
+use Friendica\Database\DBM;
 
 require_once('include/group.php');
 
@@ -14,7 +15,7 @@ function contactgroup_content(App $a) {
                        intval($a->argv[2]),
                        intval(local_user())
                );
-               if (dbm::is_result($r))
+               if (DBM::is_result($r))
                        $change = intval($a->argv[2]);
        }
 
@@ -24,7 +25,7 @@ function contactgroup_content(App $a) {
                        intval($a->argv[1]),
                        intval(local_user())
                );
-               if (! dbm::is_result($r)) {
+               if (! DBM::is_result($r)) {
                        killme();
                }