Correct a variable name, it should be "$_account_id" not "$account_id"

This commit is contained in:
dawnlinux 2004-12-14 02:12:09 +00:00
parent 7c50885810
commit b305532907

View File

@ -166,13 +166,13 @@
}
else
{
$GLOBALS['phpgw']->db->query("select account_lastlogin from phpgw_accounts where account_id='$account_id'",__LINE__,__FILE__);
$GLOBALS['phpgw']->db->query("select account_lastlogin from phpgw_accounts where account_id='$_account_id'",__LINE__,__FILE__);
$GLOBALS['phpgw']->db->next_record();
$this->previous_login = $GLOBALS['phpgw']->db->f('account_lastlogin');
$GLOBALS['phpgw']->db->query("update phpgw_accounts set account_lastloginfrom='"
. "$ip', account_lastlogin='" . time()
. "' where account_id='$account_id'",__LINE__,__FILE__);
. "' where account_id='$_account_id'",__LINE__,__FILE__);
}
}
}