removed not used assignment

This commit is contained in:
Ralf Becker 2013-09-12 08:32:40 +00:00
parent 1bd42263b6
commit 860c5f3974

View File

@ -116,7 +116,7 @@ class egw extends egw_minimal
exit;
}
// Set the DB's client charset if a system-charset is set and some other values needed by egw_cache (used in config::read)
foreach($GLOBALS['egw_info']['server']['system_charset'] = $this->db->select(config::TABLE,'config_name,config_value',array(
foreach($this->db->select(config::TABLE,'config_name,config_value',array(
'config_app' => 'phpgwapi',
'config_name' => array('system_charset','install_id','temp_dir'),
),__LINE__,__FILE__) as $row)