Fixed, PHP message: PHP Warning: Use of undefined constant __LINES__ .. the constant is called __LINE__

This commit is contained in:
Alexandros Sigalas 2019-03-06 08:25:42 +02:00
parent 3aa38ffbdf
commit fd8afd6704

View File

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