Skip to content
Snippets Groups Projects
Commit e6f1544f authored by Björn Schießle's avatar Björn Schießle
Browse files

fix OC_Log::ERROR call

parent a6e5f4b8
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment