$_POST['allow_profile'], "signature" => $this->sig_input_filter(stripslashes($_POST['message']))); update_user_meta($user_ID, "wpf_useroptions", $ops); } $user_id = $_GET['user_id']; if(!is_numeric($user_id)) wp_die(__("No such user", "mingleforum")); if($user_ID == $user_id or $user_level > 8){ $this->header(); $options = get_user_meta($user_ID, "wpf_useroptions", true); $allow_profile_v = ($options['allow_profile'] == true) ? "checked" : ""; $topics = $this->get_subscribed_threads(); $forums = $this->get_subscribed_forums(); $parser = new cartpaujBBCodeParser(); if(is_array($topics) && !empty($topics)) { $tops = ""; } else $tops = ""; if(is_array($forums) && !empty($forums)) { $fors = ""; } else $fors = ""; $out = "
".__("Edit forum options", "mingleforum")."

".__("Allow others to view my profile?", "mingleforum")."

"; if($this->options['forum_show_bio']) $out .= __('Edit Signature:', 'mingleforum').$parser->get_editor($options['signature']); $out .= "
".__("You have email notifications for these Forums:", "mingleforum")."

$fors

".__("You have email notifications for these Topics:", "mingleforum")."

$tops

"; $this->o .= $out; } else wp_die(__("An unknown error has occured. Please try again.", "mingleforum"));