diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2013-04-18 00:34:09 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2013-04-18 00:34:09 +0200 |
commit | e0393a3062c6bde9314ad061db781d8823cf5b97 (patch) | |
tree | 332b5cb40290a0f95744e330104ae5e6d4f04345 /phpBB/includes/nestedset/forum.php | |
parent | d11fed65da00297084c6f5e9799e5a544ad76e9b (diff) | |
download | forums-e0393a3062c6bde9314ad061db781d8823cf5b97.tar forums-e0393a3062c6bde9314ad061db781d8823cf5b97.tar.gz forums-e0393a3062c6bde9314ad061db781d8823cf5b97.tar.bz2 forums-e0393a3062c6bde9314ad061db781d8823cf5b97.tar.xz forums-e0393a3062c6bde9314ad061db781d8823cf5b97.zip |
[ticket/11495] Fix column variable names
PHPBB3-11495
Diffstat (limited to 'phpBB/includes/nestedset/forum.php')
-rw-r--r-- | phpBB/includes/nestedset/forum.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/nestedset/forum.php b/phpBB/includes/nestedset/forum.php index e00754eb68..18936c1c55 100644 --- a/phpBB/includes/nestedset/forum.php +++ b/phpBB/includes/nestedset/forum.php @@ -33,8 +33,8 @@ class phpbb_nestedset_forum extends phpbb_nestedset_base * Column names in the table * @var String */ - protected $columns_item_id = 'forum_id'; - protected $columns_item_parents = 'forum_parents'; + protected $column_item_id = 'forum_id'; + protected $column_item_parents = 'forum_parents'; /** * Additional SQL restrictions |