diff --git a/account.php b/account.php index 4d3a800cc81..ff9bf3dd3b2 100644 --- a/account.php +++ b/account.php @@ -40,7 +40,6 @@ function account_create($error = "") { $output .= "". t("E-mail address") .":
\n"; $output .= "
\n"; $output .= "". t("You will be sent instructions on how to validate your account via this e-mail address: make sure it is accurate.") ."

\n"; - $output .= "\n"; $output .= "\n"; diff --git a/includes/common.inc b/includes/common.inc index 778f87a3901..a89d715766e 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -268,6 +268,9 @@ include_once "includes/theme.inc"; include_once "includes/user.inc"; include_once "includes/node.inc"; +// initialize configuration variables: +$conf = variable_init(); + // initialize user session: user_init(); @@ -277,9 +280,6 @@ module_init(); // initialize localization system: $locale = locale_init(); -// initialize configuration variables: -$conf = variable_init(); - // initialize theme: $theme = theme_init(); diff --git a/updates/2.00-to-x.xx.sql b/updates/2.00-to-x.xx.sql index 0f89f9d1883..a6927ba1a1a 100644 --- a/updates/2.00-to-x.xx.sql +++ b/updates/2.00-to-x.xx.sql @@ -279,6 +279,11 @@ ALTER TABLE users ADD role varchar(32) DEFAULT '' NOT NULL; ALTER TABLE users DROP access; UPDATE users SET role = 'authenticated user'; -#23/06/01 +# 23/06/01 ALTER TABLE users CHANGE userid userid VARCHAR(32) DEFAULT '' NOT NULL; +# 24/06/01 +CREATE TABLE referer ( + url varchar(32) DEFAULT '' NOT NULL, + timestamp int(11) NOT NULL +);