mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-02 14:57:37 +02:00
[ticket/12174] Remove inline assignment
PHPBB3-12174
This commit is contained in:
@@ -448,7 +448,8 @@ class content_visibility
|
||||
AND ' . $this->db->sql_in_set('post_id', $post_id, true);
|
||||
$result = $this->db->sql_query_limit($sql, 1);
|
||||
|
||||
if ($row = $this->db->sql_fetchrow($result))
|
||||
$row = $this->db->sql_fetchrow($result);
|
||||
if ($row != false)
|
||||
{
|
||||
if ($visibility == ITEM_APPROVED)
|
||||
{
|
||||
|
Reference in New Issue
Block a user