mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-03 15:27:42 +02:00
[ticket/12505] Fix variable usage in migration file
PHPBB3-12505
This commit is contained in:
@@ -33,7 +33,7 @@ class remove_outdated_media extends \phpbb\db\migration\migration
|
|||||||
// select group ids of outdated media
|
// select group ids of outdated media
|
||||||
$sql = 'SELECT group_id
|
$sql = 'SELECT group_id
|
||||||
FROM ' . EXTENSION_GROUPS_TABLE . '
|
FROM ' . EXTENSION_GROUPS_TABLE . '
|
||||||
WHERE ' . $this->db->sql_in_set('cat_id', $cat_id);
|
WHERE ' . $this->db->sql_in_set('cat_id', $this->cat_id);
|
||||||
$result = $this->db->sql_query($sql);
|
$result = $this->db->sql_query($sql);
|
||||||
|
|
||||||
$group_ids = array();
|
$group_ids = array();
|
||||||
|
Reference in New Issue
Block a user