diff options
| author | n-aleha <nick_aleha@myway.com> | 2015-07-21 00:42:34 +0300 |
|---|---|---|
| committer | n-aleha <nick_aleha@myway.com> | 2015-08-24 00:40:38 +0300 |
| commit | afccb9cb49ce8e96079d3f0b1ea1f9084194a316 (patch) | |
| tree | 6d235f1aefcbb97d10cc6a6e5e0614ef31742d73 /phpBB/phpbb/db | |
| parent | 1f16704d347277ca1923bd2e532bc25bafacf51c (diff) | |
| download | forums-afccb9cb49ce8e96079d3f0b1ea1f9084194a316.tar forums-afccb9cb49ce8e96079d3f0b1ea1f9084194a316.tar.gz forums-afccb9cb49ce8e96079d3f0b1ea1f9084194a316.tar.bz2 forums-afccb9cb49ce8e96079d3f0b1ea1f9084194a316.tar.xz forums-afccb9cb49ce8e96079d3f0b1ea1f9084194a316.zip | |
[ticket/12505] Fix variable usage in migration file
PHPBB3-12505
Diffstat (limited to 'phpBB/phpbb/db')
| -rw-r--r-- | phpBB/phpbb/db/migration/data/v320/remove_outdated_media.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/db/migration/data/v320/remove_outdated_media.php b/phpBB/phpbb/db/migration/data/v320/remove_outdated_media.php index b2a0a79187..59208be4dc 100644 --- a/phpBB/phpbb/db/migration/data/v320/remove_outdated_media.php +++ b/phpBB/phpbb/db/migration/data/v320/remove_outdated_media.php @@ -33,7 +33,7 @@ class remove_outdated_media extends \phpbb\db\migration\migration // select group ids of outdated media $sql = 'SELECT group_id 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); $group_ids = array(); |
