]> git.mxchange.org Git - friendica.git/blobdiff - include/dbm.php
Fix Issue #2816 - MySQL version typo
[friendica.git] / include / dbm.php
index 3f936947d841b742139a2981a5a660ffc4b48b36..72d309b22ef16c940e0d41ca3963dc501a245cf1 100644 (file)
@@ -20,8 +20,8 @@ class dbm {
                foreach ($r AS $process) {
                        $state = trim($process["State"]);
 
-                       // Filter out all idle processes
-                       if (!in_array($state, array("", "init", "statistics"))) {
+                       // Filter out all non blocking processes
+                       if (!in_array($state, array("", "init", "statistics", "updating"))) {
                                ++$states[$state];
                                ++$processes;
                        }
@@ -35,5 +35,15 @@ class dbm {
                }
                return(array("list" => $statelist, "amount" => $processes));
        }
+
+       /**
+        * Checks if $array is a filled array with at least one entry.
+        *
+        * @param       $array  mixed   A filled array with at least one entry
+        * @return      Whether $array is a filled array
+        */
+       public static function is_result($array) {
+               return (is_array($array) && count($array) > 0);
+       }
 }
 ?>