1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-06 06:25:04 +02:00

[ticket/11495] Fix column variable names

PHPBB3-11495
This commit is contained in:
Joas Schilling 2013-04-18 00:34:09 +02:00
parent d11fed65da
commit e0393a3062
2 changed files with 7 additions and 7 deletions

View File

@ -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

View File

@ -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