diff options
author | rxu <rxu@mail.ru> | 2017-06-20 21:07:11 +0700 |
---|---|---|
committer | rxu <rxu@mail.ru> | 2017-06-20 21:07:11 +0700 |
commit | f3403fb10d7225d9aed121f17d1355b04fb0899e (patch) | |
tree | 8c475c38d280a8ab384523aafde4100c918ed0a4 /phpBB/phpbb/console/command | |
parent | 7f08d46aa4888cba48317bf0a8175b399039aff6 (diff) | |
download | forums-f3403fb10d7225d9aed121f17d1355b04fb0899e.tar forums-f3403fb10d7225d9aed121f17d1355b04fb0899e.tar.gz forums-f3403fb10d7225d9aed121f17d1355b04fb0899e.tar.bz2 forums-f3403fb10d7225d9aed121f17d1355b04fb0899e.tar.xz forums-f3403fb10d7225d9aed121f17d1355b04fb0899e.zip |
[ticket/15238] Add missing protected keyword
PHPBB3-15238
Diffstat (limited to 'phpBB/phpbb/console/command')
-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 656011e4a6..271b099a6c 100644 --- a/phpBB/phpbb/console/command/fixup/fix_left_right_ids.php +++ b/phpBB/phpbb/console/command/fixup/fix_left_right_ids.php @@ -101,7 +101,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 . ' |