|
From: Paul S. O. <ps...@us...> - 2001-12-16 01:52:13
|
Update of /cvsroot/phpbb/phpBB2
In directory usw-pr-cvs1:/tmp/cvs-serv12307
Modified Files:
profile.php
Log Message:
Fixed global_var bug #492117
Index: profile.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/profile.php,v
retrieving revision 1.154
retrieving revision 1.155
diff -C2 -r1.154 -r1.155
*** profile.php 2001/12/15 16:51:03 1.154
--- profile.php 2001/12/16 01:52:10 1.155
***************
*** 1811,1815 ****
$sql = "SELECT user_id, user_email, user_newpasswd
FROM " . USERS_TABLE . "
! WHERE user_actkey = '$act_key'";
if( $result = $db->sql_query($sql) )
{
--- 1811,1815 ----
$sql = "SELECT user_id, user_email, user_newpasswd
FROM " . USERS_TABLE . "
! WHERE user_actkey = '" . $HTTP_GET_VARS['act_key'] . "'";
if( $result = $db->sql_query($sql) )
{
|