diff options
author | rxu <rxu@mail.ru> | 2017-06-20 21:06:01 +0700 |
---|---|---|
committer | rxu <rxu@mail.ru> | 2017-06-20 21:06:01 +0700 |
commit | 9402339af91dd81465ff5fdde0ccf4dab349d397 (patch) | |
tree | e8feeef966ab6953eee5f5aa01031e1373f0223c /phpBB | |
parent | 840cb510e47e3ed27fa5c07e0f05cf8598b88879 (diff) | |
download | forums-9402339af91dd81465ff5fdde0ccf4dab349d397.tar forums-9402339af91dd81465ff5fdde0ccf4dab349d397.tar.gz forums-9402339af91dd81465ff5fdde0ccf4dab349d397.tar.bz2 forums-9402339af91dd81465ff5fdde0ccf4dab349d397.tar.xz forums-9402339af91dd81465ff5fdde0ccf4dab349d397.zip |
[ticket/15238] Add missing protected keyword
PHPBB3-15238
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/phpbb/console/command/fixup/fix_left_right_ids.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/console/command/fixup/fix_left_right_ids.php b/phpBB/phpbb/console/command/fixup/fix_left_right_ids.php index bcaf0043e1..f55e1761bc 100644 --- a/phpBB/phpbb/console/command/fixup/fix_left_right_ids.php +++ b/phpBB/phpbb/console/command/fixup/fix_left_right_ids.php @@ -98,7 +98,7 @@ class fix_left_right_ids extends \phpbb\console\command\command * * @return bool True on rebuild success, false otherwise */ - function fix_ids_tree(&$i, $field, $table, $parent_id = 0, $where = array()) + protected function fix_ids_tree(&$i, $field, $table, $parent_id = 0, $where = array()) { $changes_made = false; $sql = 'SELECT * FROM ' . $table . ' |