From db06c6b7c4246716a4ffdbfb81a87455853879ba Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Thu, 28 Aug 2008 15:12:18 +0000 Subject: [PATCH] Fix for 'Other Settings' which won't save --- inc/modules/admin/what-config_other.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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']); } } -- 2.30.2