From 8b59123838a60fa095ba983858148c5124afa957 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Mon, 30 Nov 2009 15:49:14 +0000 Subject: [PATCH] fixed php5.3 warning: PHP Deprecated: Function magic_quotes_runtime() is deprecated --- phpgwapi/inc/functions.inc.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/phpgwapi/inc/functions.inc.php b/phpgwapi/inc/functions.inc.php index 30a51935f7..f4ce7fe3e2 100644 --- a/phpgwapi/inc/functions.inc.php +++ b/phpgwapi/inc/functions.inc.php @@ -18,7 +18,10 @@ */ error_reporting(E_ALL & ~E_NOTICE); -magic_quotes_runtime(false); +if (function_exists('get_magic_quotes_runtime') && get_magic_quotes_runtime()) +{ + set_magic_quotes_runtime(false); +} $egw_min_php_version = '5.1'; if (!function_exists('version_compare') || version_compare(PHP_VERSION,$egw_min_php_version) < 0)