Skip to content
account.php 20.8 KiB
Newer Older
Dries Buytaert's avatar
Dries Buytaert committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489
<?

function navigation() { 
 ?>
  <P ALIGN="center">[ <A HREF="account.php">User info</A> | <A HREF="account.php?op=edituser">Edit user info</A> | <A HREF="account.php?op=edithome">Customize homepage</A> | <A HREF="account.php?op=editcomm">Customize comments</A> | <A HREF="account.php?op=logout">Logout</A> ]</P>
 <?
}

function validateAccount($uname, $email) {

  ### Verify username and e-mail address:
  if ((!$email) || ($email=="") || (strrpos($uname,' ') > 0) || (!eregi("^[_\.0-9a-z-]+@([0-9a-z][0-9a-z-]+\.)+[a-z]{2,3}$", $email))) $rval = "the specified e-mail address is not valid.<BR>";
  if ((!$uname) || ($uname=="") || (ereg("[^a-zA-Z0-9_-]",$uname))) $rval = "the specified username '$uname' is not valid.<BR>";
  if ((strlen($uname) > 15) || (strrpos($uname,' ') > 0)) $rval = "the specified username is too long: it must be less than 15 characters.";
  if (eregi("^((root)|(httpd)|(operator)|(admin)|(administrator)|(news)|(deamon)|(nobody)|(ftp))$", $uname)) $rval = "the specified username is reserved.";

  ### Verify whether username and e-mail address are uniqua:
  dbconnect();
  if (mysql_num_rows(mysql_query("select uname from users where uname='$uname'")) > 0) $rval = "the specified username is already taken.";
  if (mysql_num_rows(mysql_query("select email from users where email='$email'")) > 0) $rval = "the specified e-mail address is already registered.";
  return($rval);
}

function generatePassword($dictionary = "password.dict", $min_length = 6, $max_length = 9) {
  mt_srand((double)microtime()*1000000);
  $fp=fopen($dictionary, "r");
  $size=filesize($dictionary);

  while(strlen($password) < $min_length) {
    ### Move to a random spot in the file:
    fseek($fp,mt_rand(0,$size-8));
    ### Finish off the current word:
    fgets($fp,4096);	 
    $word=trim(fgets($fp,4096));
    if((strlen($word) + strlen($password)) <= $max_length) $password.=$word;
  }
  fclose($fp);		 
  return $password;	
}

function confirmNewUser($uname, $email) {
  include "functions.inc";
  include "theme.inc";
  $theme->header();

  if ($error = validateAccount($uname, $email)) {
    print "<B>Error:</B> $error";
  }
  else {
    ### Display account information:
    print "<U>Account information:</U><BR><UL><LI>username: $uname</LI><LI>e-mail address: $email</LI></UL>";
    ?>
     <FORM ACTION="account.php" METHOD="post">
      <INPUT TYPE="hidden" NAME="uname" VALUE="<?PHP echo"$uname"; ?>">
      <INPUT TYPE="hidden" NAME="email" VALUE="<?PHP echo"$email"; ?>">
      <BR><BR><INPUT TYPE="submit" NAME="op" VALUE="Create account">
     </FORM>
    <?
  }
  $theme->footer();
}

function finishNewUser($uname, $email) {
  include "functions.inc";
  include "theme.inc";
  $theme->header();

  dbconnect();

  $pass = generatePassword();
  $result = mysql_query("insert into users values (NULL,'','$uname','$email','','','$pass',10,'',0,0,0,'',0,'','','$commentlimit')");

  if (!$result) {
    echo mysql_errno(). ": ".mysql_error(). "<BR>";
  } 
  else {
    if ($system == 1) {
      echo "Your password is: <B>$pass</B><BR>";
      echo "<A HREF=\"account.php?op=login&uname=$uname&pass=$makepass\">Login</A> to change your personal settings.";
    } else {
      $message = "Your $sitename member account has been created succesfully.  To be able to use it you must login using the information below.  Please save this mail for further reference.\n\n   username: $uname\n     e-mail: $email\n   password: $pass\n\nThis password is generated by a randomizer.  It is recommended that you change this password immediately.\n\n$contact_signature";
      $subject="Account details for $sitename";
      mail($email, $subject, $message, "From: $contact_email\nX-Mailer: PHP/" . phpversion());
      echo "Your member account has been created and the details necessary to login have been sent to your e-mail account <B>$email</B>.  Once you received the account confirmation, hit <A HREF=\"account.php\">this link</A> to login.";
    }
  }
  $theme->footer();
}


function userinfo($uname) {
  global $user, $cookie;

  $result = mysql_query("SELECT femail, url, bio, signature FROM users WHERE uname = '$uname'");
  $userinfo = mysql_fetch_array($result);

  
  cookiedecode($user);
  
  include "theme.inc";
  $theme->header();

  if ($uname == $cookie[1]) {
    print "<P>Welcome $uname!  This is <B>your</B> user info page.  There are many more, but this one is yours. You are probably most interested in editing something, but if you need to kill some time, this place is as good as any other place.</P>";
  }
  if ((mysql_num_rows($result) == 1) && ($userinfo[url] || $userinfo[femail] || $userinfo[bio])) {
    print "<TABLE WIDTH=\"100%\">";
    ### Name:
    print "<TR><TD ALIGN=\"right\"><B>Name:</B></TD><TD><B>$uname</B></TD></TR>\n";
    ### URL:
    if ($userinfo[url]) print "<TR><TD ALIGN=\"right\"><B>URL:</B></TD><TD><A HREF=\"$userinfo[url]\">$userinfo[url]</A></TD></TR>\n";
    else print "<TR><TD ALIGN=\"right\"><B>URL:</B></TD><TD>not available</TD></TR>\n";    
    ### E-mail:
    if ($userinfo[femail]) print "<TR><TD ALIGN=\"right\" VALIGN=\"top\"><B>E-mail:</B></TD><TD><A HREF=\"mailto:$userinfo[femail]\">$userinfo[femail]</A><BR><I>(Might be spam-proofed or even completly fake.)</I></TD></TR>\n";
    else print "<TR><TD ALIGN=\"right\"><B>E-mail:</B></TD><TD>not available</TD></TR>\n";    
    ### Bio:
    if ($userinfo[bio]) print "<TR><TD ALIGN=\"right\" VALIGN=\"top\"><B>Bio:</B></TD><TD>". nl2br($userinfo[bio]) ."</TD></TR>\n";
    else print "<TR><TD ALIGN=\"right\"><B>Bio:</B></TD><TD>not available</TD></TR>\n";        
    ### Signature:
    if ($userinfo[bio]) print "<TR><TD ALIGN=\"right\" VALIGN=\"top\"><B>Signature:</B></TD><TD>". nl2br($userinfo[signature]) ."</TD></TR>\n";
    else print "<TR><TD ALIGN=\"right\"><B>Signature:</B></TD><TD>not available</TD></TR>\n";        
    print "</TABLE><BR><BR>";
  } else {
    echo "<P>No information available for <B>$uname</B>.</P>";
  }
  $theme->footer();
}

function main($user) {
  global $fail;
  if(!isset($user)) {
    include "config.inc";
    include "functions.inc";
    include "theme.inc";
    $theme->header();
  ?>
  <?
    if ($fail) print "<CENTER><BLINK><H3>Authentication failed!</H3></BLINK></CENTER>"; 
  ?>
  <TABLE BORDER="0" CELLPADDING="2" CELLSPACING="0" WIDTH="100%">
   <TR>
    <TD ALIGN="center" VALIGN="bottom" WIDTH="33%">
     <FORM ACTION="account.php" METHOD="post">
      <?
       $theme->box("Login", "<TABLE BORDER=\"0\"><TR><TD ALIGN=\"right\" WIDTH=\"80\">Username:</TD><TD><INPUT TYPE=\"text\" NAME=\"uname\" SIZE=\"12\" MAXLENGHT=\"15\"></TD></TR><TR><TD ALIGN=\"right\">Password:</TD><TD><INPUT TYPE=\"password\" NAME=\"pass\" SIZE=\"12\" MAXLENGTH=\"12\"></TD></TR><TR><TD ALIGN=\"center\" COLSPAN=\"2\"><INPUT TYPE=\"submit\" NAME=\"op\" VALUE=\"Login\"></TD></TR></TABLE>");
      ?>
     </FORM>
    </TD>
    <TD ALIGN="center" VALIGN="bottom" WIDTH="33%">
     <FORM ACTION="account.php" METHOD="post">
      <?
       $theme->box("Forgot your password?", "<TABLE BORDER=\"0\"><TR><TD ALIGN=\"right\" WIDTH=\"80\">Username:</TD><TD><INPUT TYPE=\"text\" NAME=\"uname\" SIZE=\"12\" MAXLENGHT=\"15\"></TD></TR><TR><TD COLSPAN=\"3\"><FONT SIZE=\"2\"><I>Fill out your username and your password will be mailed to the e-mail account associated with your username.</I></FONT></TD></TR><TR><TD ALIGN=\"center\" COLSPAN=\"2\"><INPUT TYPE=\"submit\" NAME=\"op\" VALUE=\"Mail password\"></TD></TR></TABLE>");
      ?>
     </FORM>
    </TD>
    <TD ALIGN="center" VALIGN="bottom" WIDTH="33%">
     <FORM ACTION="account.php" METHOD="post">
      <?
       $theme->box("Register as new user", "<TABLE BORDER=\"0\"><TR><TD ALIGN=\"right\" WIDTH=\"80\">Username:</TD><TD><INPUT TYPE=\"text\" NAME=\"uname\" SIZE=\"12\" MAXLENGTH=\"20\"></TD></TR><TR><TD ALIGN=\"right\">E-mail:</TD><TD><INPUT TYPE=\"text\" NAME=\"email\" SIZE=\"12\" MAXLENGTH=\"55\"></TD></TR><TR><TD ALIGN=\"center\" COLSPAN=\"2\"><INPUT TYPE=\"submit\" NAME=\"op\" VALUE=\"Sign up\"></TD></TR></TABLE>");
      ?>
     </FORM>
    </TD>
   </TR>
   <TR>
    <TD COLSPAN="3">
     <P>Logging in will allow you to post comments as yourself. If you don't login, you will only be able to post as <B><?php echo"$anonymous"; ?></B>.</P>
    </TD>
   </TR>
  </TABLE>
 <?PHP
  $theme->footer();
  } 
  elseif(isset($user)) {
    global $cookie;
    include "functions.inc";
    cookiedecode($user);
    dbconnect();
    userinfo($cookie[1]);
  }
}

function logout() {
  setcookie("user");
  include "functions.inc";
  include "theme.inc";
  $theme->header();
 ?>
  <BR><BR><BR><BR>
  <P ALIGN="center"><FONT SIZE="+2"><B>You are now logged out!</B></FONT></P>
  <P>You have been logged out of the system.  Since authentication details are stored by using cookies, logging out is only necessary to prevent those who have access to your computer from abusing your account.</P>
 <?
  $theme->footer();
}

function mailPassword($uname) {
  include "functions.inc";
  dbconnect();
  $result = mysql_query("select pass, email from users where uname = '$uname'");
  if(!$account = mysql_fetch_object($result)) {
    echo "Sorry, no corresponding account information was found.";
  } else {
    $message = "$uname,\n\n\na visitor from ".getenv("REMOTE_ADDR")." (most probably you) has just requested the password associated with the e-mail address '$account->email', to be sent.  The password is '$account->pass' (without the quotes).\n\nIf you didn't ask for this, don't get your panties all in a knot.  You are seeing this message, not 'them'.  So if you can't be trusted with your own password, we might have an issue, otherwise, you can just disregard this message.\n\n\n$contact_signature";
    $subject="[$sitename] password for $account->uname";
    mail($account->email, $subject, $message, "From: $contact_email\nX-Mailer: PHP/" . phpversion());
    $titlebar = "You password has been sent.";
    include "theme.inc";
    $theme->header();
    print "The requested password has been sent to the e-mail account associated with the username '<B>$uname</B>'.";
    $theme->footer();
  }
}

function docookie($setuid, $setuname, $setpass, $setstorynum, $setumode, $setuorder, $setthold, $setnoscore, $setublockon, $settheme) {
  $info = base64_encode("$setuid:$setuname:$setpass:$setstorynum:$setumode:$setuorder:$setthold:$setnoscore:$setublockon:$settheme");
  setcookie("user","$info", time() + 15552000); // 6 month = 15552000
}

function login($uname, $pass) {
  global $setinfo;
  include "functions.inc";
  dbconnect();
  $result = mysql_query("select uid, storynum, umode, uorder, thold, noscore, ublockon, theme, signature FROM users WHERE uname = '$uname' AND pass = '$pass'");
  if (mysql_num_rows($result) == 1) {
    $setinfo = mysql_fetch_array($result);
    docookie($setinfo[uid], $uname, $pass, $setinfo[storynum], $setinfo[umode], $setinfo[uorder], $setinfo[thold], $setinfo[noscore], $setinfo[ublockon], $setinfo[theme]);
    Header("Location: account.php?op=userinfo&uname=$uname");
  } else {
    Header("Location: account.php?fail=1");
  }
}

function user_edit_info() {
  include "functions.inc";
  global $user, $userinfo;
  getusrinfo($user);

  include "theme.inc";
  $theme->header();
  ?>
  
  <FORM ACTION="account.php" METHOD="post">
        
   <B>Real name:</B><BR>
   <INPUT TYPE="text" name="name" value="<?PHP echo"$userinfo[name]"; ?>" SIZE="30" MAXLENGHT="55"><BR>
   <I>Optional.</I><BR><BR>

   <B>Real e-mail address:</B><BR>
   <INPUT TYPE="text" NAME="email" VALUE="<?PHP echo"$userinfo[email]"; ?>" SIZE="30" MAXLENGHT="55"><BR>
   <I>Required, but never displayed publicly: needed in case you lose your password.</I><BR><BR>

   <B>Fake e-mail address:</B><BR>
   <INPUT TYPE="text" NAME="femail" VALUE="<?PHP echo"$userinfo[femail]"; ?>" SIZE="30" MAXLENGHT="55"><BR>
   <I>Optional, and displayed publicly by your comments.  You may spam proof it if you want.</I><BR><BR>

   <B>URL of homepage:</B><BR>
   <INPUT TYPE="text" name="url" value="<?PHP echo"$userinfo[url]"; ?>" SIZE="30" MAXLENGTH="100"><BR>
   <I>Optional, but make sure you enter fully qualified URLs only.  That is, remember to include "http://".</I><BR><BR>

   <B>Bio:</B> (255 char limit)<BR>
   <TEXTAREA WRAP="virtual" COLS="50" ROWS="5" NAME="bio"><?PHP echo"$userinfo[bio]"; ?></TEXTAREA><BR>
   <I>Optional.  This biographical information is publicly displayed on your user page.</I><BR><BR>

   <B>Password:</B> <BR>
   <INPUT TYPE="password" NAME="pass" SIZE="10" MAXLENGTH="20"> <INPUT TYPE="password" NAME="vpass" SIZE="10" MAXLENGTH="20"><BR>
   <I>Enter your new password twice if you want to change your current password or leave it blank if you are happy with your current password.</I><BR><BR>
	
   <INPUT TYPE="hidden" NAME="uname" VALUE="<?PHP echo"$userinfo[uname]"; ?>">
   <INPUT TYPE="hidden" NAME="uid" VALUE="<?PHP echo"$userinfo[uid]"; ?>">
   <INPUT TYPE="submit" NAME="op" VALUE="Save user information">
 
  </FORM>
  
  <?PHP
   $theme->footer();
}

function user_save_info($uid, $name, $uname, $email, $femail, $url, $pass, $vpass, $bio) {
  global $user, $cookie, $userinfo;
  include "functions.inc";
  if ((isset($pass)) && ("$pass" != "$vpass")) {
    echo "The verification password is not the same as the first password.";
  } 
  elseif (($pass != "") && (strlen($pass) < $minpass)) {
    echo "Sorry, your password must be at least $minpass charachters long.";
  } 
  else {
    if ($bio) { 
      $bio = FixQuotes($bio); 
    }
    if ($pass != "") {
      dbconnect();
      cookiedecode($user);
      mysql_query("UPDATE users SET name = '$name', email = '$email', femail = '$femail', url = '$url', pass = '$pass', bio = '$bio' WHERE uid = $uid");
      $result = mysql_query("SELECT uid, uname, pass, storynum, umode, uorder, thold, noscore, ublockon, theme from users where uname='$uname' and pass='$pass'");
      $userinfo = mysql_fetch_array($result);
      docookie($userinfo[uid],$userinfo[uname],$userinfo[pass],$userinfo[storynum],$userinfo[umode],$userinfo[uorder],$userinfo[thold],$userinfo[noscore],$userinfo[ublockon],$userinfo[theme]); 
    } 
    else {
      dbconnect();
      mysql_query("UPDATE users SET name = '$name', email = '$email', femail = '$femail', url = '$url', bio = '$bio' WHERE uid=$uid");
    }
  }
}

function user_edit_home() {
  include "functions.inc";
  global $user, $userinfo;
  getusrinfo($user);
  include "theme.inc";
  $theme->header();
	
  ?>
  <FORM ACTION="account.php" method="post">

  <P>	
   <B>Maximum number of stories:</B><BR>
   <INPUT TYPE="text" NAME="storynum" SIZE="3" MAXLENGHT="3" VALUE="<?PHP echo"$userinfo[storynum]"; ?>">
  </P>

  <P>
   <B>Theme:</B><BR>
   <SELECT NAME="theme">
   <?php
     include "themes/list.php";
     $themelist = explode(" ", $themelist);
     for ($i=0; $i < sizeof($themelist); $i++) {
       if ($themelist[$i]!="") {
         echo "<OPTION VALUE=\"$themelist[$i]\" ";
         if ((($userinfo[theme]=="") && ($themelist[$i]=="default")) || ($userinfo[theme]==$themelist[$i])) echo "SELECTED";
	 echo ">$themelist[$i]\n";
       }
     }
     if ($userinfo[theme]=="") $userinfo[theme] = "default";
   ?>
   </SELECT><BR>
   <I>Changes the look and feel of the site.</I>
  </P>

  <P>
   <B>User block:</B><BR>
   <TEXTAREA WRAP="virtual" COLS="50" ROWS="5" NAME="ublock"><? echo"$userinfo[ublock]"; ?></TEXTAREA><BR>
   <INPUT TYPE="checkbox" NAME="ublockon" <? if ($userinfo[ublockon]==1) { echo "checked"; } ?>> Enable user box.<BR>
   <I>Enable the checkbox and whatever you enter below will appear on your costum main page.</I>
  </P>

  <INPUT TYPE="hidden" name="uname" value="<?PHP echo"$userinfo[uname]"; ?>">
  <INPUT TYPE="hidden" name="uid" value="<?PHP echo"$userinfo[uid]"; ?>">
  <INPUT TYPE="submit" name="op" value="Save homepage settings">
  </FORM>
  <?PHP
  $theme->footer();
}

function user_save_home($uid, $uname, $storynum, $theme, $ublockon, $ublock) {
	global $user, $userinfo;
	include "functions.inc";
	dbconnect();
	if(isset($ublockon)) $ublockon=1; else $ublockon=0;	
	$ublock = FixQuotes($ublock);
	mysql_query("LOCK TABLES users WRITE");
	mysql_query("update users set storynum='$storynum', ublockon='$ublockon', ublock='$ublock', theme='$theme' where uid=$uid");
	getusrinfo($user);
	mysql_query("UNLOCK TABLES");
	docookie($userinfo[uid],$userinfo[uname],$userinfo[pass],$userinfo[storynum],$userinfo[umode],$userinfo[uorder],$userinfo[thold],$userinfo[noscore],$userinfo[ublockon],$userinfo[theme]);
	Header("Location: account.php?theme=$theme");
}

function user_edit_comm() {
  include "functions.inc";
  global $user, $userinfo;
  getusrinfo($user);

  include "theme.inc";
  $theme->header();
  ?>
	
  <FORM ACTION="account.php" METHOD="post">
   <B>Display Mode:</B><BR>
   <SELECT NAME="umode">
    <OPTION VALUE="nocomments" <?PHP if ($userinfo[umode] == 'nocomments') { echo "SELECTED"; } ?>>No comments
    <OPTION VALUE="nested" <?PHP if ($userinfo[umode] == 'nested') { echo "SELECTED"; } ?>>Nested
    <OPTION VALUE="flat" <?PHP if ($userinfo[umode] == 'flat') { echo "SELECTED"; } ?>>Flat
    <OPTION VALUE="threaded" <?PHP if (!isset($userinfo[umode]) || ($userinfo[umode]=="") || $userinfo[umode]=='threaded') { echo "SELECTED"; } ?>>Threaded
   </SELECT>
   <BR><BR>

   <B>Sort order:</B><BR>
   <SELECT NAME="uorder">
    <OPTION VALUE="0" <?PHP if (!$userinfo[uorder]) { echo "SELECTED"; } ?>>Oldest first
    <OPTION VALUE="1" <?PHP if ($userinfo[uorder]==1) { echo "SELECTED"; } ?>>Newest first
    <OPTION VALUE="2" <?PHP if ($userinfo[uorder]==2) { echo "SELECTED"; } ?>>Highest scoring first
   </SELECT>
   <BR><BR>

   <B>Threshold:</B><BR>
   <SELECT NAME="thold">
    <OPTION VALUE="-1" <?PHP if ($userinfo[thold]==-1) { echo "SELECTED"; } ?>>-1: Display uncut and raw comments.
    <OPTION VALUE="0" <?PHP if ($userinfo[thold]==0) { echo "SELECTED"; } ?>>0: Display almost all comments.
    <OPTION VALUE="1" <?PHP if ($userinfo[thold]==1) { echo "SELECTED"; } ?>>1: Display almost no anonymous comments.
    <OPTION VALUE="2" <?PHP if ($userinfo[thold]==2) { echo "SELECTED"; } ?>>2: Display comments with score +2 only.
    <OPTION VALUE="3" <?PHP if ($userinfo[thold]==3) { echo "SELECTED"; } ?>>3: Display comments with score +3 only.
    <OPTION VALUE="4" <?PHP if ($userinfo[thold]==4) { echo "SELECTED"; } ?>>4: Display comments with score +4 only.
    <OPTION VALUE="5" <?PHP if ($userinfo[thold]==5) { echo "SELECTED"; } ?>>5: Display comments with score +5 only.
   </SELECT><BR>
   <I>Comments that scored less than this setting will be ignored.<BR>Anonymous comments start at 0, comments of people logged on start at 1 and moderators can add and subtract points.</I>
   <BR><BR>

   <B>Signature:</B> (255 char limit)<BR>
   <TEXTAREA WRAP="virtual" COLS="50" ROWS="4" NAME="signature"><?PHP echo "$userinfo[signature]"; ?></TEXTAREA><BR>
   <I>Optional.  This information will be publicly displayed at the end of your comments.</I>
   <BR><BR>

   <INPUT TYPE="hidden" NAME="uname" VALUE="<?PHP echo"$userinfo[uname]"; ?>">
   <INPUT TYPE="hidden" NAME="uid" VALUE="<?PHP echo"$userinfo[uid]"; ?>">
   <INPUT TYPE="submit" NAME="op" VALUE="Save comments settings">
  </FORM>
  <?PHP
  $theme->footer();
}

function user_save_comm($uid, $uname, $umode, $uorder, $thold, $noscore, $signature) {
  global $user, $userinfo;
  include "functions.inc";
  dbconnect();
  if(isset($noscore)) $noscore = 1; else $noscore = 0;
  mysql_query("LOCK TABLES users WRITE");
//  print "UPDATE users SET umode = '$umode', uorder = '$uorder', thold = '$thold', noscore = '$noscore', signature = '$signature' WHERE uid = $uid<BR>";
  mysql_query("UPDATE users SET umode = '$umode', uorder = '$uorder', thold = '$thold', noscore = '$noscore', signature = '$signature' WHERE uid = $uid");
  getusrinfo($user);
  mysql_query("UNLOCK TABLES");
  docookie($userinfo[uid],$userinfo[uname],$userinfo[pass],$userinfo[storynum],$userinfo[umode],$userinfo[uorder],$userinfo[thold],$userinfo[noscore],$userinfo[ublockon],$userinfo[theme]);
  Header("Location: account.php");
}

switch($op) {
  case "logout":
    logout();
    break;
  case "lost_pass":
    lost_pass();
    break;
  case "Sign up":
    confirmNewUser($uname, $email);
    break;
  case "Create account":
    finishNewUser($uname, $email);
    break;
  case "Mail password":
    mailPassword($uname);
    break;
  case "userinfo":
    include "functions.inc";
    dbconnect();
    userinfo($uname);
    break;
  case "Login":
    login($uname, $pass);
    break;
  case "dummy":
    // this is needed to give the cookie a chance to digest
    include "config.inc";
    header("Location: account.php");
    break;
  case "edituser":
    user_edit_info();
    break;
  case "Save user information":
    user_save_info($uid, $name, $uname, $email, $femail, $url, $pass, $vpass, $bio);
    userinfo($uname);
    break;
  case "edithome":
    user_edit_home();
    break;
  case "Save homepage settings":
    user_save_home($uid, $uname, $storynum, $theme, $ublockon, $ublock);
    userinfo($uname);
    break;
  case "editcomm":
    user_edit_comm();
    break;
  case "Save comments settings":
    user_save_comm($uid, $uname, $umode, $uorder, $thold, $noscore, $signature);
    userinfo($uname);
    break;
  default:
    main($user);
    break;
}
?>