
2.26.2006 - Build 14 (Pete Rose): - The poor sods who are stuck on dial-up can now select to not show the minimap in their account settings. - Fixed a problem with guild names in paneltop. - Fixed minor bug in account settings that caused a server error when not changing your password. - Manually logging out of the game now resets your onlinetime so you no longer appear in Who's Online. - Letting a duel time out after it's been accepted now counts against your duelling wins/losses. - Overhauled dorow() to allow forcing array indexes by a specific column. Modified several functions accordingly. - Guild Honor is now shown correctly on the main Guild Hall page immediately after an update. - Guild shoutboxes now add the guild ID from userrow instead of in the GET request. More secure. - Guild minimim join/start levels are now admin-editable in controlrow. - updateuserrow() now array_maps addslashes to allow apostrophes in item names.
51 lines
1.8 KiB
PHP
51 lines
1.8 KiB
PHP
<?php // login.php :: Handles user logins and logouts.
|
|
|
|
include("lib.php");
|
|
if (isset($_GET["do"])) { $do = $_GET["do"]; } else { $do = ""; }
|
|
|
|
switch($do) {
|
|
case "logout":
|
|
logout();
|
|
break;
|
|
default:
|
|
login();
|
|
}
|
|
|
|
function login() {
|
|
|
|
if (isset($_POST["submit"])) {
|
|
|
|
// Setup.
|
|
include("config.php");
|
|
extract($_POST);
|
|
$query = doquery("SELECT * FROM {{table}} WHERE username='$username' LIMIT 1", "accounts");
|
|
$row = dorow($query);
|
|
|
|
// Errors.
|
|
if ($row == false) { err("Invalid username. Please <a href=\"index.php\">go back</a> and try again.", false, false); }
|
|
if ($row["password"] != md5($password)) { err("Invalid password. Please <a href=\"index.php\">go back</a> and try again.", false, false); }
|
|
if ($row["verifycode"] != 1) { err("You have not yet verified your account. Please click the link found in your Accoutn Verification email before continuing. If you never received the email, please check your spam filter settings or contact the game administrator for further assistance.", false, false); }
|
|
|
|
// Finish.
|
|
$newcookie = $row["id"] . " " . $username . " " . md5($row["password"] . "--" . $dbsettings["secretword"]);
|
|
if (isset($remember)) { $expiretime = time()+31536000; $newcookie .= " 1"; } else { $expiretime = 0; $newcookie .= " 0"; }
|
|
setcookie("scourge", $newcookie, $expiretime, "/", "", 0);
|
|
die(header("Location: index.php"));
|
|
|
|
} else {
|
|
|
|
display("Log In", gettemplate("login"), false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
function logout() {
|
|
|
|
include("globals.php");
|
|
setcookie("scourge", "", (time()-3600), "/", "", 0);
|
|
die(header("Location: login.php?do=login"));
|
|
|
|
}
|
|
|
|
?>
|