From a35af51a9c782ace1e29091bf0624f94ef62e404 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Thu, 5 Jul 2007 13:02:49 +0000 Subject: [PATCH] added magic_quotes_gpc to check_install for felamimail --- felamimail/setup/setup.inc.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/felamimail/setup/setup.inc.php b/felamimail/setup/setup.inc.php index c970c88ef6..301b1ee00a 100644 --- a/felamimail/setup/setup.inc.php +++ b/felamimail/setup/setup.inc.php @@ -54,24 +54,24 @@ $setup_info['felamimail']['check_install'] = array( '' => array( 'func' => 'pear_check', - 'from' => 'FeLaMiMail', ), # get's provided by egw-pear temporarly 'Net_Sieve' => array( 'func' => 'pear_check', - 'from' => 'FeLaMiMail', ), 'Net_IMAP' => array( 'func' => 'pear_check', - 'from' => 'FeLaMiMail', ), 'Auth_SASL' => array( 'func' => 'pear_check', - 'from' => 'FeLaMiMail', ), 'imap' => array( 'func' => 'extension_check', - 'from' => 'FeLaMiMail', + ), + 'magic_quotes_gpc' => array( + 'func' => 'php_ini_check', + 'value' => 0, + 'verbose_value' => 'Off', ), );