From 860c5f3974b3550427093d04f07eb2d46ee5b32b Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Thu, 12 Sep 2013 08:32:40 +0000 Subject: [PATCH] removed not used assignment --- phpgwapi/inc/class.egw.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpgwapi/inc/class.egw.inc.php b/phpgwapi/inc/class.egw.inc.php index d1d34a4d48..0bc9c9adf7 100644 --- a/phpgwapi/inc/class.egw.inc.php +++ b/phpgwapi/inc/class.egw.inc.php @@ -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)