diff options
author | Björn Schießle <schiessle@owncloud.com> | 2013-01-30 13:04:32 +0100 |
---|---|---|
committer | Björn Schießle <schiessle@owncloud.com> | 2013-01-30 13:04:32 +0100 |
commit | e6f1544f51c2a101e70e95f7726b2607b895b78e (patch) | |
tree | ca1349979765bd302526f3cd59c282a96994cf2e | |
parent | a6e5f4b85c0aea807f95347e68f88faf08dfbee1 (diff) | |
download | nextcloud-server-e6f1544f51c2a101e70e95f7726b2607b895b78e.tar.gz nextcloud-server-e6f1544f51c2a101e70e95f7726b2607b895b78e.zip |
fix OC_Log::ERROR call
-rw-r--r-- | apps/files_trashbin/lib/trash.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_trashbin/lib/trash.php b/apps/files_trashbin/lib/trash.php index 68473c46b15..b0c2284d979 100644 --- a/apps/files_trashbin/lib/trash.php +++ b/apps/files_trashbin/lib/trash.php @@ -94,7 +94,7 @@ class Trashbin { $query = \OC_DB::prepare('SELECT location,type FROM *PREFIX*files_trash WHERE user=? AND id=? AND timestamp=?');
$result = $query->execute(array($user,$filename,$timestamp))->fetchAll(); if ( count($result) != 1 ) { - \OC_Log::write('files_trashbin', 'trash bin database inconsistent!', OC_Log::ERROR); + \OC_Log::write('files_trashbin', 'trash bin database inconsistent!', \OC_Log::ERROR); return false; } |