aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/develop
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-03-03 20:01:19 +0100
committerJoas Schilling <nickvergessen@gmx.de>2014-03-03 20:01:19 +0100
commit5b1fbfb2f2c901b89bb1163503b0468e11bbc307 (patch)
treeafaa3d02d4155eb30034e1a07097c60bb8354ec6 /phpBB/develop
parente750d71f840e0c2e8fe802c5cc593c0630746291 (diff)
downloadforums-5b1fbfb2f2c901b89bb1163503b0468e11bbc307.tar
forums-5b1fbfb2f2c901b89bb1163503b0468e11bbc307.tar.gz
forums-5b1fbfb2f2c901b89bb1163503b0468e11bbc307.tar.bz2
forums-5b1fbfb2f2c901b89bb1163503b0468e11bbc307.tar.xz
forums-5b1fbfb2f2c901b89bb1163503b0468e11bbc307.zip
[ticket/12187] Remove user_website functionality
PHPBB3-12187
Diffstat (limited to 'phpBB/develop')
-rw-r--r--phpBB/develop/benchmark.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/phpBB/develop/benchmark.php b/phpBB/develop/benchmark.php
index 0be483e234..d985b073f9 100644
--- a/phpBB/develop/benchmark.php
+++ b/phpBB/develop/benchmark.php
@@ -366,7 +366,6 @@ function make_user($username)
$password = md5("benchpass");
$email = "nobody@localhost";
- $website = "http://www.phpbb.com";
$signature = "$username: phpBB tester.";
$signature_bbcode_uid = "";
$avatar_filename = "";
@@ -418,8 +417,8 @@ function make_user($username)
}
- $sql = "INSERT INTO " . USERS_TABLE . " (user_id, username, user_regdate, user_password, user_email, user_website, user_sig, user_sig_bbcode_uid, user_avatar, user_viewemail, user_aim, user_yim, user_msnm, user_attachsig, user_allowsmilies, user_allowhtml, user_allowbbcode, user_allow_viewonline, user_notify, user_notify_pm, user_timezone, user_dateformat, user_lang, user_style, user_level, user_allow_pm, user_active, user_actkey)
- VALUES ($new_user_id, '$username', " . time() . ", '$password', '$email', '$website', '$signature', '$signature_bbcode_uid', '$avatar_filename', $viewemail, '$aim', '$yim', '$msn', $attachsig, $allowsmilies, $allowhtml, $allowbbcode, $allowviewonline, $notifyreply, $notifypm, $user_timezone, '$user_dateformat', '$user_lang', $user_style, 0, 1, ";
+ $sql = "INSERT INTO " . USERS_TABLE . " (user_id, username, user_regdate, user_password, user_email, user_sig, user_sig_bbcode_uid, user_avatar, user_viewemail, user_aim, user_yim, user_msnm, user_attachsig, user_allowsmilies, user_allowhtml, user_allowbbcode, user_allow_viewonline, user_notify, user_notify_pm, user_timezone, user_dateformat, user_lang, user_style, user_level, user_allow_pm, user_active, user_actkey)
+ VALUES ($new_user_id, '$username', " . time() . ", '$password', '$email', '$signature', '$signature_bbcode_uid', '$avatar_filename', $viewemail, '$aim', '$yim', '$msn', $attachsig, $allowsmilies, $allowhtml, $allowbbcode, $allowviewonline, $notifyreply, $notifypm, $user_timezone, '$user_dateformat', '$user_lang', $user_style, 0, 1, ";
$sql .= "1, '')";