|
From: Jonathan H. <the...@us...> - 2002-03-27 19:11:13
|
Update of /cvsroot/phpbb/phpBB2/admin
In directory usw-pr-cvs1:/tmp/cvs-serv11563
Modified Files:
admin_users.php
Log Message:
Fix for bug # 535531... How'd that echo get in there?
Index: admin_users.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/admin/admin_users.php,v
retrieving revision 1.55
retrieving revision 1.56
diff -C2 -r1.55 -r1.56
*** admin_users.php 23 Mar 2002 15:36:14 -0000 1.55
--- admin_users.php 27 Mar 2002 19:11:09 -0000 1.56
***************
*** 643,647 ****
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]);
$this_userdata = get_userdata($user_id);
if( !$this_userdata )
--- 643,647 ----
if( isset( $HTTP_GET_VARS[POST_USERS_URL]) || isset( $HTTP_POST_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 )
***************
*** 1071,1073 ****
include('page_footer_admin.'.$phpEx);
! ?>
\ No newline at end of file
--- 1071,1073 ----
include('page_footer_admin.'.$phpEx);
! ?>
|