1
0
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:
Tristan Darricau
2014-05-09 00:31:53 +02:00
parent f755f69606
commit a80ad5d00f

View File

@@ -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)
{