summaryrefslogtreecommitdiff
path: root/account.php
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2000-10-24 07:24:24 +0000
committerDries Buytaert <dries@buytaert.net>2000-10-24 07:24:24 +0000
commitcbeb5ee4684df20dc35cd79e375df862170dd752 (patch)
tree5c62ac6703b8f127c2f924e4b6596904cc857088 /account.php
parent9d3e9bc782a58785074188427edbe9f1b7c49e86 (diff)
downloadbrdo-cbeb5ee4684df20dc35cd79e375df862170dd752.tar.gz
brdo-cbeb5ee4684df20dc35cd79e375df862170dd752.tar.bz2
This significant commit fixes 99% of all known bugs and improves drop.org
by means of better security checks in order to avoid malicious behavior. In addition, quite some code has been fine-tuned. However, as a result, every theme will require a small update ...
Diffstat (limited to 'account.php')
-rw-r--r--account.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/account.php b/account.php
index 4041c62f1..de9ba64d8 100644
--- a/account.php
+++ b/account.php
@@ -37,7 +37,7 @@ function account_session_start($userid, $passwd) {
function account_session_close() {
global $user;
- watchdog(1, "$user->userid: sucessful attempt to logout");
+ watchdog(1, "session closed for user `$user->userid'");
session_unset();
session_destroy();
unset($user);
@@ -257,7 +257,7 @@ function account_register_enter($user = "", $error = "") {
$output .= "<P>\n";
$output .= " <B>Username:</B><BR>\n";
$output .= " <INPUT NAME=\"new[userid]\" VALUE=\"$new[userid]\"><BR>\n";
- $output .= " <SMALL><I>Enter your desired username: only letters, numbers and some special characters are allowed.</I></SMALL><BR>\n";
+ $output .= " <SMALL><I>Enter your desired username: only letters, numbers and common special characters are allowed.</I></SMALL><BR>\n";
$output .= "</P>\n";
$output .= "<P>\n";
$output .= " <B>E-mail address:</B><BR>\n";