fix PHP Warning: Use of undefined constant __FILES__

This commit is contained in:
Ralf Becker 2019-02-18 16:01:28 +01:00
parent 781700ea6d
commit 23ceb00380

View File

@ -103,7 +103,7 @@ if($GLOBALS['error'] && is_array($newsettings))
} }
else else
{ {
foreach($GLOBALS['egw_setup']->db->select($GLOBALS['egw_setup']->config_table,'*',false,__LINES__,__FILES__) as $row) foreach($GLOBALS['egw_setup']->db->select($GLOBALS['egw_setup']->config_table,'*',false,__LINES__,__FILE__) as $row)
{ {
$GLOBALS['current_config'][$row['config_name']] = $row['config_value']; $GLOBALS['current_config'][$row['config_name']] = $row['config_value'];
} }