1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-03-03 15:29:12 +01:00

[ticket/15744] Remove useless sql_freeresults

PHPBB3-15744
This commit is contained in:
Jakub Senko 2018-09-06 14:11:51 +02:00 committed by Marc Alexander
parent 284368b9d6
commit 30303647f0
No known key found for this signature in database
GPG Key ID: 50E0D2423696F995

View File

@ -74,13 +74,11 @@ class remove_attachment_flash extends \phpbb\db\migration\migration
WHERE ' . $this->db->sql_in_set('group_id', $group_ids);
}
$result = $this->db->sql_query($sql);
$this->db->sql_freeresult($result);
$this->db->sql_query($sql);
// delete the now empty, outdated media extension groups
$sql = 'DELETE FROM ' . EXTENSION_GROUPS_TABLE . '
WHERE ' . $this->db->sql_in_set('group_id', $group_ids);
$result = $this->db->sql_query($sql);
$this->db->sql_freeresult($result);
$this->db->sql_query($sql);
}
}