remove obsolete code with safe_mode
This commit is contained in:
parent
76bc97d627
commit
5b0c842c48
3 changed files with 1 additions and 8 deletions
|
@ -189,11 +189,6 @@ if($_REQUEST['action'] == 'welcome')
|
|||
else if(!is_writeable(B1GMAIL_DATA_DIR))
|
||||
$notices[] = array('type' => 'error',
|
||||
'text' => sprintf($lang_admin['dataperms'], B1GMAIL_DATA_DIR));
|
||||
// struct storage?
|
||||
if($bm_prefs['structstorage'] == 'yes' && ini_get('safe_mode'))
|
||||
$notices[] = array('type' => 'error',
|
||||
'text' => $lang_admin['structsafewarn'],
|
||||
'link' => 'prefs.common.php?');
|
||||
|
||||
// dynamic recipient detection but no receive rules
|
||||
if($bm_prefs['recipient_detection'] == 'dynamic')
|
||||
|
@ -291,7 +286,7 @@ if($_REQUEST['action'] == 'welcome')
|
|||
'link' => 'prefs.common.php?');
|
||||
|
||||
// struct storage recommended?
|
||||
if($bm_prefs['structstorage'] == 'no' && !ini_get('safe_mode'))
|
||||
if($bm_prefs['structstorage'] == 'no')
|
||||
$notices[] = array('type' => 'info',
|
||||
'text' => $lang_admin['structrec'],
|
||||
'link' => 'prefs.common.php?');
|
||||
|
|
|
@ -1869,7 +1869,6 @@ $lang_admin['smsreplyabs'] = 'SMS-to-Mail-Absender';
|
|||
$lang_admin['datastorage'] = 'Datei-Speicherung';
|
||||
$lang_admin['structstorage'] = 'Strukturierte Speicherung';
|
||||
$lang_admin['dynnorecvrules'] = 'Die Empfänger-Bestimmung ist auf "Empfangs-Regeln verwenden" eingestellt, es sind aber keine Empfangs-Regeln vorhanden. E-Mail-Empfang ist nicht möglich. Bitte stellen Sie die Empfänger-Bestimmung auf "Automatisch" um oder legen Sie Empfangs-Regeln an.';
|
||||
$lang_admin['structsafewarn'] = 'Der PHP-SafeMode ist aktiviert. Die Aktivierung der strukturierten Datei-Speicherung kann zu Datenverlusten führen. Es wird dringend geraten, die strukturierte Speicherung nicht zu aktivieren!';
|
||||
$lang_admin['structrec'] = 'Der PHP-SafeMode ist deaktiviert. Unter diesen Umständen führt die strukturierte Datei-Speicherung zur Verbesserung der Performance. Die Aktivierung der strukturierten Speicherung wird empfohlen.';
|
||||
$lang_admin['dnsblreq'] = 'Erforderliche positive Tests';
|
||||
$lang_admin['croninterval'] = 'Minimales Cronjob-Intervall';
|
||||
|
|
|
@ -1919,7 +1919,6 @@ $lang_admin['mail2smsabs'] = 'Mail-to-SMS sender';
|
|||
$lang_admin['smsreplyabs'] = 'SMS-to-mail sender';
|
||||
$lang_admin['datastorage'] = 'Data storage';
|
||||
$lang_admin['structstorage'] = 'Structured storage';
|
||||
$lang_admin['structsafewarn'] = 'The PHP safe mode is enabled. Enabling structured data storage may lead to data loss. It is strongly advised that structured data storage is not enabled!';
|
||||
$lang_admin['structrec'] = 'The PHP safe mode is disabled. Under these circumstances the structured data storage will enhance performance. Enabling the structured data storage is recommended.';
|
||||
$lang_admin['dnsblreq'] = 'Required positive tests';
|
||||
$lang_admin['croninterval'] = 'Minimum cronjob interval';
|
||||
|
|
Loading…
Reference in a new issue