aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/ucp.php
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2003-05-26 23:53:34 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2003-05-26 23:53:34 +0000
commite1484f522d28194c63d424bc621b93d3cf8865b9 (patch)
treea6c2e5b249ac9c688525f24737fc8e29d1c669e1 /phpBB/ucp.php
parent4e71b1b96d21e78463a768004c1c8ed2e1d952d5 (diff)
downloadforums-e1484f522d28194c63d424bc621b93d3cf8865b9.tar
forums-e1484f522d28194c63d424bc621b93d3cf8865b9.tar.gz
forums-e1484f522d28194c63d424bc621b93d3cf8865b9.tar.bz2
forums-e1484f522d28194c63d424bc621b93d3cf8865b9.tar.xz
forums-e1484f522d28194c63d424bc621b93d3cf8865b9.zip
Majority are UCP related updates ... avatars should now work, aside from gallery, fixed a few other issues, updated schema/basic
git-svn-id: file:///svn/phpbb/trunk@4062 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/ucp.php')
-rwxr-xr-xphpBB/ucp.php17
1 files changed, 8 insertions, 9 deletions
diff --git a/phpBB/ucp.php b/phpBB/ucp.php
index 69907da92c..ce5b34476c 100755
--- a/phpBB/ucp.php
+++ b/phpBB/ucp.php
@@ -25,7 +25,6 @@
// * Link to (additional?) registration conditions
// * Admin defineable characters allowed in usernames?
// * Admin forced revalidation of given user/s from ACP
-// * Simple registration (option or always?), i.e. username, email address, password
// * Opening tab:
// * Last visit time
@@ -76,13 +75,13 @@ $ucp = new ucp();
switch ($mode)
{
case 'activate':
- $ucp->module('activate');
- $ucp->modules['activate']->main();
+ $ucp->load_module('activate');
+ $ucp->module['activate']->main();
break;
case 'remind':
- $ucp->module('remind');
- $ucp->modules['remind']->main();
+ $ucp->load_module('remind');
+ $ucp->module['remind']->main();
break;
@@ -92,13 +91,13 @@ switch ($mode)
redirect("index.$phpEx$SID");
}
- $ucp->module('register');
- $ucp->modules['register']->main();
+ $ucp->load_module('register');
+ $ucp->module['register']->main();
break;
case 'confirm':
- $ucp->module('confirm');
- $ucp->modules['confirm']->main();
+ $ucp->load_module('confirm');
+ $ucp->module['confirm']->main();
break;
case 'login':