diff options
| author | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-04-20 01:07:19 +0000 |
|---|---|---|
| committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-04-20 01:07:19 +0000 |
| commit | 79f898e053d510207e91c0d37f6e5975d9331dc2 (patch) | |
| tree | e33a018c41bef94c6d583278961300402e2274e1 /phpBB/profile.php | |
| parent | d133dc9874f8a56d87e002777a186379062061b7 (diff) | |
| download | forums-79f898e053d510207e91c0d37f6e5975d9331dc2.tar forums-79f898e053d510207e91c0d37f6e5975d9331dc2.tar.gz forums-79f898e053d510207e91c0d37f6e5975d9331dc2.tar.bz2 forums-79f898e053d510207e91c0d37f6e5975d9331dc2.tar.xz forums-79f898e053d510207e91c0d37f6e5975d9331dc2.zip | |
Fixed call to get_userdata
git-svn-id: file:///svn/phpbb/trunk@196 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/profile.php')
| -rw-r--r-- | phpBB/profile.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/profile.php b/phpBB/profile.php index 54b8d9141a..9bf1863e11 100644 --- a/phpBB/profile.php +++ b/phpBB/profile.php @@ -51,7 +51,7 @@ switch($mode) error_die(GENERAL_ERROR, $l_nouserid); } } - $profiledata = get_userdata_from_id($db, $HTTP_GET_VARS[POST_USERS_URL]); + $profiledata = get_userdata_from_id($HTTP_GET_VARS[POST_USERS_URL]); // Calculate the number of days this user has been a member ($memberdays) // Then calculate their posts per day |
