Merge pull request #559 from marc1706/ticket/558

[ticket/558] Fix coding guidelines infractions
This commit is contained in:
Marc Alexander
2015-06-03 15:38:43 +02:00
16 changed files with 76 additions and 76 deletions

View File

@@ -201,7 +201,7 @@ class v210_beta1 extends \phpbb\db\migration\migration
$sql = 'SELECT group_id, group_name FROM ' . $this->table_prefix . 'groups
WHERE ' . $this->db->sql_in_set('group_name', $in_ary);
$result = $this->db->sql_query($sql);
while($row = $this->db->sql_fetchrow($result))
while ($row = $this->db->sql_fetchrow($result))
{
$groups_ary[$row['group_name']] = $row['group_id'];
}