diff options
author | Robin Appelman <icewind@owncloud.com> | 2012-02-25 20:27:16 +0100 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2012-02-25 20:27:16 +0100 |
commit | 4f627c428eb64fae307ea293e8093e345d742edc (patch) | |
tree | b14d265ce4ed7ab7ce0fcc381605bd9a1ecaafda /3rdparty | |
parent | dda79a90cf50f98c1dc4c98401be8707b7103346 (diff) | |
download | nextcloud-server-4f627c428eb64fae307ea293e8093e345d742edc.tar.gz nextcloud-server-4f627c428eb64fae307ea293e8093e345d742edc.zip |
some more error reporting during filesystem scan
Diffstat (limited to '3rdparty')
-rw-r--r-- | 3rdparty/MDB2/Driver/mysql.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/3rdparty/MDB2/Driver/mysql.php b/3rdparty/MDB2/Driver/mysql.php index b9b46c0d762..2cec1e9c033 100644 --- a/3rdparty/MDB2/Driver/mysql.php +++ b/3rdparty/MDB2/Driver/mysql.php @@ -794,7 +794,7 @@ class MDB2_Driver_mysql extends MDB2_Driver_Common ? 'mysql_query' : 'mysql_unbuffered_query'; $result = @$function($query, $connection); if (!$result) { - $err =& $this->raiseError(null, null, null, + $err =$this->raiseError(null, null, null, 'Could not execute statement', __FUNCTION__); return $err; } |