]> git.mxchange.org Git - friendica.git/commitdiff
dbm.php - is_result should be a static function
authorrabuzarus <rabuzarus@t-online.de>
Mon, 25 Jul 2016 09:46:14 +0000 (11:46 +0200)
committerGitHub <noreply@github.com>
Mon, 25 Jul 2016 09:46:14 +0000 (11:46 +0200)
there was a notice in php.out - `Non-static method dbm::is_result() should not be called statically`
This should fix it.

include/dbm.php

index 7c8c9b8c145ebd1e709cdcad4892ec696978e43c..fdd9f40e762a1b1443de691390f3cca572703634 100644 (file)
@@ -42,7 +42,7 @@ class dbm {
         * @param       $array  mixed   A filled array with at least one entry
         * @return      Whether $array is a filled array
         */
-       public function is_result($array) {
+       public static function is_result($array) {
                return (is_array($array) && count($array) > 0);
        }
 }