id."_avatar.jpg"; if ($avatar_type<0 or $avatar_type>3) $avatar_type=0; if ($avatar_type==0){ if (file_exists($newfile)){ unset($newfile); //Delete the file on the server if the user //decides not to use an avatar // - or should it be kept? } $avatar_url=""; } elseif ($avatar_type==2){ if ($_FILES['picture']['tmp_name']!=""){ $file=$_FILES['picture']['tmp_name']; $size = getImageSize($file); // print_r($size);flush(); if ($size[2]!=2 and $size[2]!=3){ //Not the right kind of file Echo "Error: Not the right kind of file, only PNG and JPEG are supported."; exit(); } $width = $size[0]; $height = $size[1]; $image2 = intelligently_scale_image($file, 100, 100); ImageJPEG($image2, $newfile); } if (file_exists($newfile)){ $avatar_url=IMAGE_URL.$user->id."_avatar.jpg"; //$newfile; } else { //User didn't upload a compatible file or it went lost on the server $avatar_url=""; } } $image_as_link = ($HTTP_POST_VARS["forum_images_as_links"]!=""); $link_externally = ($HTTP_POST_VARS["forum_link_externally"]!=""); $hide_avatars = ($HTTP_POST_VARS["forum_hide_avatars"]!=""); $hide_signatures = ($HTTP_POST_VARS["forum_hide_signatures"]!=""); $jump_to_unread = ($HTTP_POST_VARS["forum_jump_to_unread"]!=""); $low_rating_threshold = intval($HTTP_POST_VARS["forum_low_rating_threshold"]); $high_rating_threshold = intval($HTTP_POST_VARS["forum_high_rating_threshold"]); $add_user_to_filter = ($HTTP_POST_VARS["add_user_to_filter"]!=""); $no_signature_by_default=($HTTP_POST_VARS["signature_enable"]==""); $signature = sanitize_html(stripslashes($HTTP_POST_VARS["signature"])); if (strlen($signature)>250) { echo "You signature was too long, please keep it less than 250 chars"; exit(); } $signature = mysql_escape_string($signature); $forum_sort = $HTTP_POST_VARS["forum_sort"]; $thread_sort = $HTTP_POST_VARS["thread_sort"]; $faq_sort = $HTTP_POST_VARS["faq_sort"]; $answer_sort = $HTTP_POST_VARS["answer_sort"]; $forum_sorting=mysql_escape_string(implode("|",array($forum_sort,$thread_sort,$faq_sort,$answer_sort))); $has_prefs=mysql_query("select * from forum_preferences where userid='".$user->id."'"); $ignorelist = $user->ignorelist; if ($add_user_to_filter){ //see if we should add any users to the ignorelist $user_to_add = $HTTP_POST_VARS["forum_filter_user"]; if ($user_to_add!="" and $user_to_add==strval(intval($user_to_add))){ $ignorelist.="|".$user_to_add; } } $ignored_users = explode("|",$ignorelist); //split the list into an array $ignored_users = array_unique($ignored_users); //a user can only be on the list once natsort($ignored_users); //sort the list by userid in natural order $ignored_users=array_values($ignored_users); //reindex $real_ignorelist = ""; for ($i=1;$iid" ); if ($result) { echo mysql_error(); Header("Location: home.php"); } else { page_head("Forum preferences update"); echo "Couldn't update forum preferences.
\n"; echo mysql_error(); page_tail(); } ?>