From 171f280da2f45c11feb9bb6b53e3bceb069b8004 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20=C3=85kre=20Solberg?= <andreas.solberg@uninett.no> Date: Wed, 25 Feb 2009 12:49:03 +0000 Subject: [PATCH] check for magic quotes git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@1328 44740490-163a-0410-bde0-09ae8108e29a --- www/index.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/www/index.php b/www/index.php index 362b57df1..beb073bdc 100644 --- a/www/index.php +++ b/www/index.php @@ -267,6 +267,13 @@ $funcmatrix[] = array( 'enabled' => $password_ok ); +$funcmatrix[] = array( + 'required' => 'required', + 'descr' => 'Magic Quotes should be turned off', + 'enabled' => (get_magic_quotes_runtime() === 0) +); + + $t = new SimpleSAML_XHTML_Template($config, 'frontpage.php', 'frontpage'); $t->data['isadmin'] = $isadmin; $t->data['loginurl'] = $loginurl; -- GitLab