diff options
author | James Atkinson <thefinn@users.sourceforge.net> | 2001-06-11 00:58:08 +0000 |
---|---|---|
committer | James Atkinson <thefinn@users.sourceforge.net> | 2001-06-11 00:58:08 +0000 |
commit | cb44575d8ac73c719e252556c64572a6e84e4f7f (patch) | |
tree | cfa963e88c5e97a6ab7e765ce6cc6dcf924fe72d /phpBB/profile.php | |
parent | b71e098cdc39752a32c50a7147f893f582e86d26 (diff) | |
download | forums-cb44575d8ac73c719e252556c64572a6e84e4f7f.tar forums-cb44575d8ac73c719e252556c64572a6e84e4f7f.tar.gz forums-cb44575d8ac73c719e252556c64572a6e84e4f7f.tar.bz2 forums-cb44575d8ac73c719e252556c64572a6e84e4f7f.tar.xz forums-cb44575d8ac73c719e252556c64572a6e84e4f7f.zip |
Posting preview done, ability for anonymous users to post with a username
git-svn-id: file:///svn/phpbb/trunk@463 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/profile.php')
-rw-r--r-- | phpBB/profile.php | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/phpBB/profile.php b/phpBB/profile.php index a0ee1e8f34..b595e04d99 100644 --- a/phpBB/profile.php +++ b/phpBB/profile.php @@ -37,61 +37,7 @@ init_userprefs($userdata); // // Page specific functions // -function validate_username($username) -{ - - global $db; - switch(SQL_LAYER) - { - // Along with subqueries MySQL also lacks - // a UNION clause which would be very nice here :( - // So we have to use two queries - case 'mysql': - $sql_users = "SELECT username - FROM ".USERS_TABLE." - WHERE LOWER(username) = '".strtolower($username)."'"; - $sql_disallow = "SELECT disallow_username - FROM ".DISALLOW_TABLE." - WHERE disallow_username = '$username'"; - - if($result = $db->sql_query($sql_users)) - { - if($db->sql_numrows($result) > 0) - { - return(FALSE); - } - } - if($result = $db->sql_query($sql_disallow)) - { - if($db->sql_numrows($result) > 0) - { - return(FALSE); - } - } - break; - - default: - $sql = "SELECT disallow_username - FROM ".DISALLOW_TABLE." - WHERE disallow_username = '$username' - UNION - SELECT username - FROM ".USERS_TABLE." - WHERE LOWER(username) = '".strtolower($username)."'"; - - if($result = $db->sql_query($sql)) - { - if($db->sql_numrows($result) > 0) - { - return(FALSE); - } - } - break; - } - - return(TRUE); -} function language_select($default, $dirname="language/") { global $phpEx; |