From fd8afd6704e9bc2c27968052618fdc4546ed3d01 Mon Sep 17 00:00:00 2001 From: Alexandros Sigalas Date: Wed, 6 Mar 2019 08:25:42 +0200 Subject: [PATCH] Fixed, PHP message: PHP Warning: Use of undefined constant __LINES__ .. the constant is called __LINE__ --- setup/config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/config.php b/setup/config.php index fc53a5c7a0..29e3255de6 100644 --- a/setup/config.php +++ b/setup/config.php @@ -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']; }