aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/tree/nestedset.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/phpbb/tree/nestedset.php')
-rw-r--r--phpBB/phpbb/tree/nestedset.php4
1 files changed, 1 insertions, 3 deletions
diff --git a/phpBB/phpbb/tree/nestedset.php b/phpBB/phpbb/tree/nestedset.php
index c4ab3b0740..2bfb65732d 100644
--- a/phpBB/phpbb/tree/nestedset.php
+++ b/phpBB/phpbb/tree/nestedset.php
@@ -666,8 +666,6 @@ abstract class nestedset implements \phpbb\tree\tree_interface
/**
* Get all items from the tree
*
- * Basic data is defined in the $item_basic_data property.
- *
* @param bool $order_asc Order the items ascending by their left_id
* @return array Array of items (containing all columns from the item table)
* ID => Item data
@@ -676,7 +674,7 @@ abstract class nestedset implements \phpbb\tree\tree_interface
{
$rows = array();
- $sql = 'SELECT ' . implode(', ', $this->item_basic_data) . '
+ $sql = 'SELECT *
FROM ' . $this->table_name . ' ' .
$this->get_sql_where('WHERE') . '
ORDER BY ' . $this->column_left_id . ' ' . ($order_asc ? 'ASC' : 'DESC');