Default to username if no displayname column is set (thanks to Dominik Grothaus)

This commit is contained in:
Andreas Boehler 2014-12-29 10:39:23 +01:00
parent 6c7d12131b
commit 80ce4728eb
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ class OC_USER_SQL extends OC_User_Backend implements OC_User_Interface
$this -> sql_table = OCP\Config::getAppValue('user_sql', 'sql_table', '');
$this -> sql_column_username = OCP\Config::getAppValue('user_sql', 'sql_column_username', '');
$this -> sql_column_password = OCP\Config::getAppValue('user_sql', 'sql_column_password', '');
$this -> sql_column_displayname = OCP\Config::getAppValue('user_sql', 'sql_column_displayname', '');
$this -> sql_column_displayname = OCP\Config::getAppValue('user_sql', 'sql_column_displayname', $this->sql_column_username);
$this -> sql_column_active = OCP\Config::getAppValue('user_sql', 'sql_column_active', '');
$this -> sql_type = OCP\Config::getAppValue('user_sql', 'sql_type', '');
$this -> default_domain = OCP\Config::getAppValue('user_sql', 'default_domain', '');