]> git.mxchange.org Git - friendica.git/blobdiff - mod/manage.php
More usage of dbm::is_result($r) instead of count($r):
[friendica.git] / mod / manage.php
index adcc3d787aac0d58563cbd5d38e82e50384498d2..a91138f35eaf48d3b41c0c1ff6c27d4527693bd6 100644 (file)
@@ -15,7 +15,7 @@ function manage_post(&$a) {
                $r = q("select * from user where uid = %d limit 1",
                        intval($_SESSION['submanage'])
                );
-               if(count($r)) {
+               if(dbm::is_result($r)) {
                        $uid = intval($r[0]['uid']);
                        $orig_record = $r[0];
                }
@@ -56,7 +56,7 @@ function manage_post(&$a) {
                );
        }
 
-       if(! count($r))
+       if(! dbm::is_result($r))
                return;
 
        unset($_SESSION['authenticated']);