Merge pull request #66 from asig2016/master_fix3

Fixed, PHP message: PHP Warning: Use of undefined constant __LINES__ …
This commit is contained in:
Ralf Becker 2019-03-06 08:54:54 +01:00 committed by GitHub
commit deef5d52fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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'];
}