diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-06-20 17:43:03 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-06-20 17:43:03 +0000 |
commit | e57faf219274c3802fef3831be18f15961035b05 (patch) | |
tree | 9ab269050888eed8d42e9a2864c969732daab4a5 /modules/user.module | |
parent | 25081b2103d5a758876adc12ea097faabe153791 (diff) | |
download | brdo-e57faf219274c3802fef3831be18f15961035b05.tar.gz brdo-e57faf219274c3802fef3831be18f15961035b05.tar.bz2 |
- Bugfix: fixed problem with changing themes. Didn't apply Al's patch as
the fix was somewhat simpler. Fixes bug #2003.
- Bugfix: fixed problem with voting on certain poll pages. Patch #37 by Al.
- Improvement: removed stupid descriptions from profile module.
Diffstat (limited to 'modules/user.module')
-rw-r--r-- | modules/user.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/user.module b/modules/user.module index e073b1e32..c888868e9 100644 --- a/modules/user.module +++ b/modules/user.module @@ -1164,7 +1164,7 @@ function user_page() { case t("Save user information"): case "edit": $output = user_edit($edit); - $theme = theme_init(); + $GLOBALS["theme"] = theme_init(); theme("header"); theme("box", t("User account"), user_menu()); theme("box", t("Edit user information"), $output); |