From 23ceb00380a7f187ac53e6a550e47f20d45fe8fd Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Mon, 18 Feb 2019 16:01:28 +0100 Subject: [PATCH] fix PHP Warning: Use of undefined constant __FILES__ --- setup/config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/config.php b/setup/config.php index 4504870359..fc53a5c7a0 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__,__FILES__) as $row) + foreach($GLOBALS['egw_setup']->db->select($GLOBALS['egw_setup']->config_table,'*',false,__LINES__,__FILE__) as $row) { $GLOBALS['current_config'][$row['config_name']] = $row['config_value']; }