From f14bb091ca4d218413cbd8b8319f7d86c57fa35e Mon Sep 17 00:00:00 2001 From: Nao Date: Fri, 21 Mar 2014 00:02:29 +0100 Subject: [PATCH] * Saving milli-microseconds for SSI, just like in index.php... (SSI.php) --- SSI.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SSI.php b/SSI.php index 8844a229..1efe4988 100644 --- a/SSI.php +++ b/SSI.php @@ -21,7 +21,7 @@ global $db_server, $db_connection, $db_name, $db_user, $db_prefix, $db_persist; global $db_error_send, $db_last_error, $ssi_db_user, $ssi_db_passwd, $db_passwd; -if (function_exists('set_magic_quotes_runtime') && version_compare(PHP_VERSION, '5.4') < 0) +if (version_compare(PHP_VERSION, '5.4') < 0 && function_exists('set_magic_quotes_runtime')) { // Remember the current configuration so it can be set back. $ssi_magic_quotes_runtime = function_exists('get_magic_quotes_runtime') && @get_magic_quotes_runtime();