summaryrefslogtreecommitdiff
path: root/install.php
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2007-08-30 19:31:28 +0000
committerDries Buytaert <dries@buytaert.net>2007-08-30 19:31:28 +0000
commit3ee06d4bad9c69f0ed0cd143318dace9a1466afe (patch)
treeab6d5d14961cb212daaff92d10787609475e7f9f /install.php
parentd82fe113bc4093356c7ef5f8ee210ca4340dced8 (diff)
downloadbrdo-3ee06d4bad9c69f0ed0cd143318dace9a1466afe.tar.gz
brdo-3ee06d4bad9c69f0ed0cd143318dace9a1466afe.tar.bz2
- Patch #149540 by chx: first user installed as uid = 2 in MySQL 4.1.
Diffstat (limited to 'install.php')
-rw-r--r--install.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/install.php b/install.php
index 59ad4ba5c..4c1ffcb52 100644
--- a/install.php
+++ b/install.php
@@ -970,6 +970,7 @@ function install_configure_form_submit($form, &$form_state) {
$form_state['old_values'] = $form_state['values'];
$form_state['values'] = $form_state['values']['account'];
user_register_submit($form, $form_state);
+ db_query("INSERT INTO {users} (uid, name, mail) VALUES(%d, '%s', '%s')", 0, '', '');
$form_state['values'] = $form_state['old_values'];
unset($form_state['old_values']);
variable_set('user_email_verification', TRUE);