mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
[ticket/11495] Fix column variable names
PHPBB3-11495
This commit is contained in:
parent
d11fed65da
commit
e0393a3062
2 changed files with 7 additions and 7 deletions
|
@ -30,11 +30,11 @@ abstract class phpbb_nestedset_base implements phpbb_nestedset_interface
|
|||
* Column names in the table
|
||||
* @var String
|
||||
*/
|
||||
protected $columns_item_id = 'item_id';
|
||||
protected $columns_left_id = 'left_id';
|
||||
protected $columns_right_id = 'right_id';
|
||||
protected $columns_parent_id = 'parent_id';
|
||||
protected $columns_item_parents = 'item_parents';
|
||||
protected $column_item_id = 'item_id';
|
||||
protected $column_left_id = 'left_id';
|
||||
protected $column_right_id = 'right_id';
|
||||
protected $column_parent_id = 'parent_id';
|
||||
protected $column_item_parents = 'item_parents';
|
||||
|
||||
/**
|
||||
* Additional SQL restrictions
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue