mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-26 16:48:49 +01:00
Fixed, PHP message: PHP Warning: Use of undefined constant __LINES__ .. the constant is called __LINE__
This commit is contained in:
parent
3aa38ffbdf
commit
fd8afd6704
@ -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__,__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'];
|
$GLOBALS['current_config'][$row['config_name']] = $row['config_value'];
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user