mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
[ticket/12505] Fix variable usage in migration file
PHPBB3-12505
This commit is contained in:
parent
1f16704d34
commit
afccb9cb49
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||||
|
|
Loading…
Add table
Reference in a new issue