$val) { if (isset($val) and $val != 1) { LOG_INFO($db_link, "Remove config option id: $val"); delete_record($db_link, "config", "id=" . $val); } } } header("Location: " . $_SERVER["REQUEST_URI"]); exit; } if (isset($_POST['save'])) { $len = is_array($_POST['save']) ? count($_POST['save']) : 0; for ($i = 0; $i < $len; $i ++) { $save_id = intval($_POST['save'][$i]); $len_all = is_array($_POST['id']) ? count($_POST['id']) : 0; for ($j = 0; $j < $len_all; $j ++) { if (intval($_POST['id'][$j]) != $save_id) { continue; } $value = $_POST['f_config_value'][$j]; if (isset($value) and $value!=='********') { $new['value'] = $value; update_record($db_link, "config", "id='{$save_id}'", $new); } } } header("Location: " . $_SERVER["REQUEST_URI"]); exit; } if (isset($_POST["create"])) { $new_option = $_POST["f_new_option"]; if (isset($new_option)) { $new['option_id'] = $new_option; $new['value'] = get_option($db_link,$new_option); LOG_INFO($db_link, "Add config option $new_option"); insert_record($db_link, "config", $new); } header("Location: " . $_SERVER["REQUEST_URI"]); exit; } unset($_POST); fix_auth_rules($db_link); require_once ($_SERVER['DOCUMENT_ROOT']."/inc/header.php"); print_control_submenu($page_url); ?>