]> git.mxchange.org Git - friendica.git/blobdiff - mod/profperm.php
This merge brings back dbm::is_result() where I could find it.
[friendica.git] / mod / profperm.php
index 077f695bea14c15be10f592258847bcd6e3d1198..c3c189cd8a94da87347adc3fbdedac773c9ddfc5 100644 (file)
@@ -42,7 +42,7 @@ function profperm_content(&$a) {
                        intval($a->argv[2]),
                        intval(local_user())
                );
-               if(count($r))
+               if(dbm::is_result($r))
                        $change = intval($a->argv[2]);
        }
 
@@ -64,7 +64,7 @@ function profperm_content(&$a) {
                );
 
                $ingroup = array();
-               if(count($r))
+               if(dbm::is_result($r))
                        foreach($r as $member)
                                $ingroup[] = $member['id'];
 
@@ -94,7 +94,7 @@ function profperm_content(&$a) {
                        $members = $r;
 
                        $ingroup = array();
-                       if(count($r))
+                       if(dbm::is_result($r))
                                foreach($r as $member)
                                        $ingroup[] = $member['id'];
                }
@@ -138,7 +138,7 @@ function profperm_content(&$a) {
                        dbesc(NETWORK_DFRN)
                );
 
-               if(count($r)) {
+               if(dbm::is_result($r)) {
                        $textmode = (($switchtotext && (count($r) > $switchtotext)) ? true : false);
                        foreach($r as $member) {
                                if(! in_array($member['id'],$ingroup)) {