added magic_quotes_gpc to check_install for felamimail

This commit is contained in:
Ralf Becker 2007-07-05 13:02:49 +00:00
parent 89ad98a2eb
commit a35af51a9c

View File

@ -54,24 +54,24 @@
$setup_info['felamimail']['check_install'] = array( $setup_info['felamimail']['check_install'] = array(
'' => array( '' => array(
'func' => 'pear_check', 'func' => 'pear_check',
'from' => 'FeLaMiMail',
), ),
# get's provided by egw-pear temporarly # get's provided by egw-pear temporarly
'Net_Sieve' => array( 'Net_Sieve' => array(
'func' => 'pear_check', 'func' => 'pear_check',
'from' => 'FeLaMiMail',
), ),
'Net_IMAP' => array( 'Net_IMAP' => array(
'func' => 'pear_check', 'func' => 'pear_check',
'from' => 'FeLaMiMail',
), ),
'Auth_SASL' => array( 'Auth_SASL' => array(
'func' => 'pear_check', 'func' => 'pear_check',
'from' => 'FeLaMiMail',
), ),
'imap' => array( 'imap' => array(
'func' => 'extension_check', 'func' => 'extension_check',
'from' => 'FeLaMiMail', ),
'magic_quotes_gpc' => array(
'func' => 'php_ini_check',
'value' => 0,
'verbose_value' => 'Off',
), ),
); );