Fix cache problems with newer ownCloud versions

This commit is contained in:
Andreas Boehler 2014-10-27 20:40:48 +01:00
parent e2773e06ae
commit 700fb00c71
1 changed files with 5 additions and 5 deletions

View File

@ -47,7 +47,7 @@ class OC_USER_SQL extends OC_User_Backend implements OC_User_Interface {
public function __construct()
{
$this->db_conn = false;
$this->cache = \OC_Cache::getGlobalCache();
$this->cache = \OC\Cache::getGlobalCache();
$this->sql_host = OCP\Config::getAppValue('user_sql', 'sql_host', '');
$this->sql_username = OCP\Config::getAppValue('user_sql', 'sql_user', '');
$this->sql_database = OCP\Config::getAppValue('user_sql', 'sql_database', '');