diff options
author | the_systech <the_systech@users.sourceforge.net> | 2002-03-27 19:11:09 +0000 |
---|---|---|
committer | the_systech <the_systech@users.sourceforge.net> | 2002-03-27 19:11:09 +0000 |
commit | 58472ef494b7d8f0e379a8392e800f2ef5de30c2 (patch) | |
tree | 8fe43c5f3f3a248f2e92a55e13d828f279b484d9 /phpBB | |
parent | 9b661002343811f164ab0d2d781c4570ae93132c (diff) | |
download | forums-58472ef494b7d8f0e379a8392e800f2ef5de30c2.tar forums-58472ef494b7d8f0e379a8392e800f2ef5de30c2.tar.gz forums-58472ef494b7d8f0e379a8392e800f2ef5de30c2.tar.bz2 forums-58472ef494b7d8f0e379a8392e800f2ef5de30c2.tar.xz forums-58472ef494b7d8f0e379a8392e800f2ef5de30c2.zip |
Fix for bug # 535531... How'd that echo get in there?
git-svn-id: file:///svn/phpbb/trunk@2442 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/admin/admin_users.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/admin/admin_users.php b/phpBB/admin/admin_users.php index 95bde0f42a..96eba013e2 100644 --- a/phpBB/admin/admin_users.php +++ b/phpBB/admin/admin_users.php @@ -642,7 +642,7 @@ if( $mode == 'edit' || $mode == 'save' && ( isset($HTTP_POST_VARS['username']) | { if( isset( $HTTP_GET_VARS[POST_USERS_URL]) || isset( $HTTP_POST_VARS[POST_USERS_URL]) ) { - echo $user_id = ( isset( $HTTP_POST_VARS[POST_USERS_URL]) ) ? intval( $HTTP_POST_VARS[POST_USERS_URL]) : intval( $HTTP_GET_VARS[POST_USERS_URL]); + $user_id = ( isset( $HTTP_POST_VARS[POST_USERS_URL]) ) ? intval( $HTTP_POST_VARS[POST_USERS_URL]) : intval( $HTTP_GET_VARS[POST_USERS_URL]); $this_userdata = get_userdata($user_id); if( !$this_userdata ) { @@ -1070,4 +1070,4 @@ else include('page_footer_admin.'.$phpEx); -?>
\ No newline at end of file +?> |