]> git.mxchange.org Git - friendica.git/blobdiff - mod/allfriends.php
Class file relocations
[friendica.git] / mod / allfriends.php
index 8d849d37556d8f67e6175c69f461a01ce98021a0..ce9e68f010478f6c296519f54d6624849c5b4510 100644 (file)
@@ -2,6 +2,7 @@
 
 use Friendica\App;
 use Friendica\Core\System;
+use Friendica\Database\DBM;
 
 require_once('include/socgraph.php');
 require_once('include/Contact.php');
@@ -31,7 +32,7 @@ function allfriends_content(App $a) {
                intval(local_user())
        );
 
-       if (! dbm::is_result($c)) {
+       if (! DBM::is_result($c)) {
                return;
        }
 
@@ -45,7 +46,7 @@ function allfriends_content(App $a) {
 
        $r = all_friends(local_user(), $cid, $a->pager['start'], $a->pager['itemspage']);
 
-       if (! dbm::is_result($r)) {
+       if (! DBM::is_result($r)) {
                $o .= t('No friends to display.');
                return $o;
        }