Skip to content

Commit

Permalink
Fixed, PHP message: PHP Warning: Use of undefined constant __LINES__ …
Browse files Browse the repository at this point in the history
….. the constant is called __LINE__
  • Loading branch information
asig2016 committed Mar 6, 2019
1 parent 3aa38ff commit fd8afd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
}
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'];
}
Expand Down

0 comments on commit fd8afd6

Please sign in to comment.