diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-05-11 00:58:14 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-05-11 00:58:14 +0000 |
commit | 30fd2486d82d50fecd4ba5ec6b81eebc4fcfdf49 (patch) | |
tree | 1a810c52171ee2b0fb38078084288b78e5c42ee5 /phpBB/ucp/ucp_profile.php | |
parent | 549537b9d570ac70c16f4560b9efbafa293834db (diff) | |
download | forums-30fd2486d82d50fecd4ba5ec6b81eebc4fcfdf49.tar forums-30fd2486d82d50fecd4ba5ec6b81eebc4fcfdf49.tar.gz forums-30fd2486d82d50fecd4ba5ec6b81eebc4fcfdf49.tar.bz2 forums-30fd2486d82d50fecd4ba5ec6b81eebc4fcfdf49.tar.xz forums-30fd2486d82d50fecd4ba5ec6b81eebc4fcfdf49.zip |
Yet more mildly fudged code ... just to get something up, minor fixes/updates elsewhere
git-svn-id: file:///svn/phpbb/trunk@4004 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/ucp/ucp_profile.php')
-rw-r--r-- | phpBB/ucp/ucp_profile.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/ucp/ucp_profile.php b/phpBB/ucp/ucp_profile.php index a37fc6a8a3..b1513e0e7f 100644 --- a/phpBB/ucp/ucp_profile.php +++ b/phpBB/ucp/ucp_profile.php @@ -29,7 +29,7 @@ class ucp_profile extends ucp $submode = ($_REQUEST['mode']) ? htmlspecialchars($_REQUEST['mode']) : 'reg_details'; $submodules['REG_DETAILS'] = "i=$id&mode=reg_details"; - $submodules['PROFILE'] = "i=$id&mode=profile"; + $submodules['PROFILE_INFO'] = "i=$id&mode=profile_info"; $submodules['SIGNATURE'] = "i=$id&mode=signature"; $submodules['AVATAR'] = "i=$id&mode=avatar"; @@ -50,7 +50,7 @@ class ucp_profile extends ucp ); break; - case 'profile': + case 'profile_info': list($day, $month, $year) = explode('-', $user->data['user_birthday']); |