]> git.mxchange.org Git - friendica.git/commitdiff
Removing of warnings to make dav work
authorMichael Vogel <icarus@dabo.de>
Thu, 24 Jul 2014 21:24:10 +0000 (23:24 +0200)
committerMichael Vogel <icarus@dabo.de>
Thu, 24 Jul 2014 21:24:10 +0000 (23:24 +0200)
include/dba_pdo.php

index eed9ea1251150e29342a3fe35f8417eaad28073b..7b720fb6c1217e31be5ae0368ea9facbdfcf229e 100644 (file)
@@ -182,13 +182,13 @@ class dba {
                 * These usually indicate SQL syntax errors that need to be resolved.
                 */
 
-               if($result === false) {
+               if(isset($result) AND ($result === false)) {
                        logger('dba: ' . printable($sql) . ' returned false.' . "\n" . $this->error);
                        if(file_exists('dbfail.out'))
                                file_put_contents('dbfail.out', datetime_convert() . "\n" . printable($sql) . ' returned false' . "\n" . $this->error . "\n", FILE_APPEND);
                }
 
-               if(($result === true) || ($result === false))
+               if(isset($result) AND (($result === true) || ($result === false)))
                        return $result;
     
                if ($onlyquery) {