mirror of
https://github.com/phpbb/phpbb.git
synced 2025-05-10 17:45:18 +02:00
Fixed global_var bug #492117
git-svn-id: file:///svn/phpbb/trunk@1599 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
f983f8f2bf
commit
e6ee41ce9f
@ -1810,7 +1810,7 @@ if( isset($HTTP_GET_VARS['mode']) || isset($HTTP_POST_VARS['mode']) )
|
|||||||
{
|
{
|
||||||
$sql = "SELECT user_id, user_email, user_newpasswd
|
$sql = "SELECT user_id, user_email, user_newpasswd
|
||||||
FROM " . USERS_TABLE . "
|
FROM " . USERS_TABLE . "
|
||||||
WHERE user_actkey = '$act_key'";
|
WHERE user_actkey = '" . $HTTP_GET_VARS['act_key'] . "'";
|
||||||
if( $result = $db->sql_query($sql) )
|
if( $result = $db->sql_query($sql) )
|
||||||
{
|
{
|
||||||
if( $row = $db->sql_fetchrow($result) )
|
if( $row = $db->sql_fetchrow($result) )
|
||||||
|
Loading…
x
Reference in New Issue
Block a user