diff options
author | David Colón <david@davidiq.com> | 2017-10-26 16:21:50 -0400 |
---|---|---|
committer | David Colón <david@davidiq.com> | 2017-10-26 16:21:50 -0400 |
commit | 33ceceda021160b73fe9d7333e9e950308da5569 (patch) | |
tree | 52afdd3644e0814f83be30109f2096e8bccc6862 /phpBB/phpbb/db | |
parent | 4ae7cb89ff55902ab50393e1f7aa81b4b055f511 (diff) | |
download | forums-33ceceda021160b73fe9d7333e9e950308da5569.tar forums-33ceceda021160b73fe9d7333e9e950308da5569.tar.gz forums-33ceceda021160b73fe9d7333e9e950308da5569.tar.bz2 forums-33ceceda021160b73fe9d7333e9e950308da5569.tar.xz forums-33ceceda021160b73fe9d7333e9e950308da5569.zip |
[ticket/15372] Add permission to schema and copy from f_read
Diffstat (limited to 'phpBB/phpbb/db')
-rw-r--r-- | phpBB/phpbb/db/migration/data/v32x/f_list_topics_permission_add.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/db/migration/data/v32x/f_list_topics_permission_add.php b/phpBB/phpbb/db/migration/data/v32x/f_list_topics_permission_add.php index e4b77d0f0f..49727e5a62 100644 --- a/phpBB/phpbb/db/migration/data/v32x/f_list_topics_permission_add.php +++ b/phpBB/phpbb/db/migration/data/v32x/f_list_topics_permission_add.php @@ -25,7 +25,7 @@ class f_list_topics_permission_add extends \phpbb\db\migration\migration public function update_data() { return array( - array('permission.add', array('f_list_topics', false)), + array('permission.add', array('f_list_topics', false, 'f_read')), ); } } |