$v) { if (is_array($v)) { $array[$k] = add_magic_quotes($v); } else { $array[$k] = addslashes($v); } } return $array; } if (!get_magic_quotes_gpc()) { $HTTP_GET_VARS = add_magic_quotes($HTTP_GET_VARS); $HTTP_POST_VARS = add_magic_quotes($HTTP_POST_VARS); $HTTP_COOKIE_VARS = add_magic_quotes($HTTP_COOKIE_VARS); } $b2varstoreset = array('action','standalone', 'option_group_id'); for ($i=0; $iget_results("SELECT $tableoptions.option_id, option_name, option_type, option_value, option_admin_level " . "FROM $tableoptions " . "LEFT JOIN $tableoptiongroup_options ON $tableoptions.option_id = $tableoptiongroup_options.option_id " . "WHERE group_id = $option_group_id " . "ORDER BY seq"); if ($options) { foreach ($options as $option) { // should we even bother checking? if ($user_level >= $option->option_admin_level) { $this_name = $option->option_name; $old_val = stripslashes($option->option_value); $new_val = $HTTP_POST_VARS[$this_name]; if ($new_val != $old_val) { // get type and validate $msg = validate_option($option, $this_name, $new_val); if ($msg == '') { //no error message $result = $wpdb->query("UPDATE $tableoptions SET option_value = '$new_val' WHERE option_id = $option->option_id"); if (!$result) { $db_errors .= " SQL error while saving $this_name. "; } else { ++$any_changed; } } else { $validation_message .= $msg; } } } } // end foreach unset($cache_settings); // so they will be re-read get_settings('siteurl'); // make it happen now } // end if options if ($any_changed) { $message = $any_changed . ' setting(s) saved... '; } if (($dB_errors != '') || ($validation_message != '')) { if ($message != '') { $message .= '
and '; } $message .= $dB_errors . '
' . $validation_message; } //break; //fall through default: $standalone = 0; include_once("./admin-header.php"); if ($user_level <= 3) { die("You have no right to edit the options for this blog.
Ask for a promotion to your blog admin :)"); } ?>

get_results("SELECT $tableoptions.option_id, option_name, option_type, option_value, option_width, option_height, option_description, option_admin_level " . "FROM $tableoptions " . "LEFT JOIN $tableoptiongroup_options ON $tableoptions.option_id = $tableoptiongroup_options.option_id " . "WHERE group_id = $option_group_id " . "ORDER BY seq"); if ($options) { foreach ($options as $option) { echo('\n"); } } ?>
'. get_option_widget($option, ($user_level >= $option->option_admin_level), '')); echo("$option->option_description
 

No help for this group of options.