From 69b895caae1582c02f607141d8c45c4840cb0d6a Mon Sep 17 00:00:00 2001 From: rxu Date: Wed, 10 Nov 2021 14:13:02 +0700 Subject: [PATCH] [ticket/16895] Rename custom method PHPBB3-16895 --- phpBB/phpbb/db/migration/data/v33x/remove_orphaned_roles.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phpBB/phpbb/db/migration/data/v33x/remove_orphaned_roles.php b/phpBB/phpbb/db/migration/data/v33x/remove_orphaned_roles.php index 247264257c..11e1ab0812 100644 --- a/phpBB/phpbb/db/migration/data/v33x/remove_orphaned_roles.php +++ b/phpBB/phpbb/db/migration/data/v33x/remove_orphaned_roles.php @@ -23,11 +23,11 @@ class remove_orphaned_roles extends \phpbb\db\migration\migration public function update_data() { return [ - ['custom', [[$this, 'remove_orphaned_roles']]], + ['custom', [[$this, 'acl_remove_orphaned_roles']]], ]; } - public function remove_orphaned_roles() + public function acl_remove_orphaned_roles() { $auth_role_ids = $role_ids = $auth_settings = [];