replace \MDB with \OC_DB, approved in #2278

remotes/origin/stable6
Björn Schießle 12 years ago
parent 8154b4be7d
commit abe408e934
  1. 2
      lib/files/cache/cache.php

@ -204,7 +204,7 @@ class Cache {
$query = \OC_DB::prepare('INSERT INTO `*PREFIX*filecache`(' . implode(', ', $queryParts) . ')'
. ' VALUES(' . implode(', ', $valuesPlaceholder) . ')');
$result = $query->execute($params);
if (\MDB2::isError($result)) {
if (\OC_DB::isError($result)) {
\OCP\Util::writeLog('cache', 'Insert to cache failed: '.$result, \OCP\Util::ERROR);
}

Loading…
Cancel
Save