0 or your database will crow and crow and crow... if (!isPostRequestElementSet('online_timeout')) { unsetPostRequestElement('ok'); } // Chedck other timestamps (which can be zero!) if (!isPostRequestElementSet('url_tlock')) { unsetPostRequestElement('ok'); } // Check other settings if (!isPostRequestElementSet('max_send')) { unsetPostRequestElement('ok'); } if (!isPostRequestElementSet('code_length')) { unsetPostRequestElement('ok'); } if (!isPostRequestElementSet('reject_url')) { unsetPostRequestElement('ok'); } } // END - if if (isFormSent('save_config')) { // Update stamps directly adminSaveSettingsFromPostData(); } else { // Time selection boxes $content['online_timeout'] = createConfigurationTimeSelections('online_timeout' , 'ms'); $content['url_tlock'] = createConfigurationTimeSelections('url_tlock' , 'WDh'); // Prepare more foreach (array('css_php_direct','css_php_file','css_php_inline','mailid_error_redirect_index','mailid_error_redirect_reject') as $entry) { $content[$entry] = ''; } // END - foreach for ($i = '0'; $i <= 5; $i++) { $content['max_comma_' . $i] = ''; } // END - for // Set selections $content = merge_array($content, getCheckedConfig(array('css_php', 'mailid_error_redirect'))); // Set selection $content = merge_array($content, getSelectedConfig(array('max_comma'))); // Load template loadTemplate('admin_config_other', FALSE, $content); } // [EOF] ?>