mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
[ticket/13332] Remove useless $result assignment
PHPBB3-13332
This commit is contained in:
parent
040fc6dd0f
commit
91f7d53d8e
1 changed files with 1 additions and 1 deletions
|
@ -123,7 +123,7 @@ class db extends \phpbb\auth\provider\base
|
||||||
'username_clean' => $username_clean,
|
'username_clean' => $username_clean,
|
||||||
);
|
);
|
||||||
$sql = 'INSERT INTO ' . LOGIN_ATTEMPT_TABLE . $this->db->sql_build_array('INSERT', $attempt_data);
|
$sql = 'INSERT INTO ' . LOGIN_ATTEMPT_TABLE . $this->db->sql_build_array('INSERT', $attempt_data);
|
||||||
$result = $this->db->sql_query($sql);
|
$this->db->sql_query($sql);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue