diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/dba.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/dba.php b/include/dba.php index 9e44db5fb..0e790d4c1 100644 --- a/include/dba.php +++ b/include/dba.php @@ -57,6 +57,10 @@ class dba { break; } } + else { + if(($result === false) && (file_exists('dbfail.out'))) + file_put_contents('dbfail.out', printable($sql) . ' returned false' . "\n", FILE_APPEND); + } if(($result === true) || ($result === false)) return $result; |