From: Roland Häder Date: Thu, 28 Aug 2008 15:12:18 +0000 (+0000) Subject: Fix for 'Other Settings' which won't save X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=commitdiff_plain;h=db06c6b7c4246716a4ffdbfb81a87455853879ba Fix for 'Other Settings' which won't save --- diff --git a/inc/modules/admin/what-config_other.php b/inc/modules/admin/what-config_other.php index 72e13eab9a..2421b01083 100644 --- a/inc/modules/admin/what-config_other.php +++ b/inc/modules/admin/what-config_other.php @@ -56,7 +56,7 @@ if (isset($_POST['ok'])) { } // Online-Timeout shall be > 0 or your database will crow and crow and crow... - if (!isset($_POST['online_timeout'])) { unset($_POST['ok']); } + if (!isset($_POST['online_timeout'])) { unset($_POST['ok']); } // Chedck other timestamps (which can be zero!) if (!isset($_POST['profile_lock'])) { unset($_POST['ok']); } @@ -66,8 +66,6 @@ if (isset($_POST['ok'])) { // Check other settings if (!isset($_POST['max_send'])) { unset($_POST['ok']); } - if (!isset($_POST['max_tlength'])) { unset($_POST['ok']); } - if (!isset($_POST['unconfirmed'])) { unset($_POST['ok']); } if (!isset($_POST['code_length'])) { unset($_POST['ok']); } if (!isset($_POST['reject_url'])) { unset($_POST['ok']); } }