diff options
| author | Joas Schilling <nickvergessen@gmx.de> | 2013-04-17 22:52:17 +0200 |
|---|---|---|
| committer | Joas Schilling <nickvergessen@gmx.de> | 2013-04-17 22:52:17 +0200 |
| commit | f831e3c66efe79841a0bcc01cf0b2d37e6d4e65c (patch) | |
| tree | da297ebde1a16d23a274fbd939c143db0f278433 /phpBB/includes/nestedset/forum.php | |
| parent | dcee7961e80a0d188d887a13cc6409623bc1ff6e (diff) | |
| download | forums-f831e3c66efe79841a0bcc01cf0b2d37e6d4e65c.tar forums-f831e3c66efe79841a0bcc01cf0b2d37e6d4e65c.tar.gz forums-f831e3c66efe79841a0bcc01cf0b2d37e6d4e65c.tar.bz2 forums-f831e3c66efe79841a0bcc01cf0b2d37e6d4e65c.tar.xz forums-f831e3c66efe79841a0bcc01cf0b2d37e6d4e65c.zip | |
[ticket/11495] Use unique properties for the column names
PHPBB3-11495
Diffstat (limited to 'phpBB/includes/nestedset/forum.php')
| -rw-r--r-- | phpBB/includes/nestedset/forum.php | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/phpBB/includes/nestedset/forum.php b/phpBB/includes/nestedset/forum.php index 7ad4d2c85e..b1df3c7e45 100644 --- a/phpBB/includes/nestedset/forum.php +++ b/phpBB/includes/nestedset/forum.php @@ -31,15 +31,10 @@ class phpbb_nestedset_forum extends phpbb_nestedset_base /** * Column names in the table - * @var array + * @var String */ - protected $table_columns = array( - 'item_id' => 'forum_id', - 'left_id' => 'left_id', - 'right_id' => 'right_id', - 'parent_id' => 'parent_id', - 'item_parents' => 'forum_parents', - ); + protected $columns_item_id = 'forum_id'; + protected $columns_item_parents = 'forum_parents'; /** * Additional SQL restrictions |
