From 9054462ec2a4f66b3986d070b23e6acbd20869ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaime=20P=C3=A9rez=20Crespo?= <jaime.perez@uninett.no> Date: Thu, 20 Sep 2012 10:18:54 +0000 Subject: [PATCH] Fix for compatibility with PHP versions greater or equal to 5.4.x. git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@3166 44740490-163a-0410-bde0-09ae8108e29a --- modules/core/www/frontpage_config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/core/www/frontpage_config.php b/modules/core/www/frontpage_config.php index 6c345d614..136b4afa1 100644 --- a/modules/core/www/frontpage_config.php +++ b/modules/core/www/frontpage_config.php @@ -131,7 +131,7 @@ $funcmatrix[] = array( $funcmatrix[] = array( 'required' => 'reccomended', 'descr' => 'Magic Quotes should be turned off', - 'enabled' => (get_magic_quotes_runtime() === 0) + 'enabled' => (get_magic_quotes_runtime() == 0) ); -- GitLab