1
0
Fork 0

CSR changes, split dbclean in separate processes if worker is active

This commit is contained in:
Michael Vogel 2016-10-22 10:14:41 +00:00
commit b429b85680
10 changed files with 592 additions and 589 deletions

View file

@ -44,9 +44,9 @@ class dbm {
*/
public static function is_result($array) {
// It could be a return value from an update statement
if (is_bool($array))
if (is_bool($array)) {
return $array;
}
return (is_array($array) && count($array) > 0);
}
}