]> git.mxchange.org Git - friendica.git/blobdiff - mod/profperm.php
Fix unused code in include
[friendica.git] / mod / profperm.php
index c49fb7f282721434a29ea5d6fe5ac9fec3c9c19a..99b58516d3e420b4e1dda7402d8f179d8a979948 100644 (file)
@@ -3,6 +3,7 @@
 use Friendica\App;
 use Friendica\Core\Config;
 use Friendica\Core\PConfig;
+use Friendica\Database\DBM;
 
 function profperm_init(App $a) {
 
@@ -45,7 +46,7 @@ function profperm_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]);
        }
 
@@ -55,7 +56,7 @@ function profperm_content(App $a) {
                        intval($a->argv[1]),
                        intval(local_user())
                );
-               if (! dbm::is_result($r)) {
+               if (! DBM::is_result($r)) {
                        notice( t('Invalid profile identifier.') . EOL );
                        return;
                }
@@ -67,7 +68,7 @@ function profperm_content(App $a) {
                );
 
                $ingroup = array();
-               if (dbm::is_result($r))
+               if (DBM::is_result($r))
                        foreach($r as $member)
                                $ingroup[] = $member['id'];
 
@@ -97,7 +98,7 @@ function profperm_content(App $a) {
                        $members = $r;
 
                        $ingroup = array();
-                       if (dbm::is_result($r))
+                       if (DBM::is_result($r))
                                foreach($r as $member)
                                        $ingroup[] = $member['id'];
                }
@@ -141,7 +142,7 @@ function profperm_content(App $a) {
                        dbesc(NETWORK_DFRN)
                );
 
-               if (dbm::is_result($r)) {
+               if (DBM::is_result($r)) {
                        $textmode = (($switchtotext && (count($r) > $switchtotext)) ? true : false);
                        foreach($r as $member) {
                                if(! in_array($member['id'],$ingroup)) {