aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2013-04-30 18:39:22 +0200
committerJoas Schilling <nickvergessen@gmx.de>2013-04-30 18:39:22 +0200
commit6a7378ecbdeea1ad356cbde8a085aa7510c61788 (patch)
tree6bc30597997be8bfe5d0fe02273e672e2f0e7ebe /phpBB/includes
parentd1d59dc5cc3ca779c5e7a971659c8aca5e28215d (diff)
downloadforums-6a7378ecbdeea1ad356cbde8a085aa7510c61788.tar
forums-6a7378ecbdeea1ad356cbde8a085aa7510c61788.tar.gz
forums-6a7378ecbdeea1ad356cbde8a085aa7510c61788.tar.bz2
forums-6a7378ecbdeea1ad356cbde8a085aa7510c61788.tar.xz
forums-6a7378ecbdeea1ad356cbde8a085aa7510c61788.zip
[ticket/11495] Some more doc changes
PHPBB3-11495
Diffstat (limited to 'phpBB/includes')
-rw-r--r--phpBB/includes/tree/interface.php6
-rw-r--r--phpBB/includes/tree/nestedset.php2
2 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/includes/tree/interface.php b/phpBB/includes/tree/interface.php
index 2eb40b066c..cc8aab2115 100644
--- a/phpBB/includes/tree/interface.php
+++ b/phpBB/includes/tree/interface.php
@@ -90,7 +90,7 @@ interface phpbb_tree_interface
/**
* Get all items that are either ancestors or descendants of the item
*
- * @param int $item_id The item id the ancestors/descendants should be retrieved from
+ * @param int $item_id Id of the item to retrieve the ancestors/descendants from
* @param bool $order_asc Order the items ascendingly (most outer ancestor first)
* @param bool $include_item Should the item matching the given item id be included in the list as well
* @return array Array of items (containing all columns from the item table)
@@ -101,7 +101,7 @@ interface phpbb_tree_interface
/**
* Get all of the item's ancestors
*
- * @param int $item_id The item id the ancestors should be retrieved from
+ * @param int $item_id Id of the item to retrieve the ancestors from
* @param bool $order_asc Order the items ascendingly (most outer ancestor first)
* @param bool $include_item Should the item matching the given item id be included in the list as well
* @return array Array of items (containing all columns from the item table)
@@ -112,7 +112,7 @@ interface phpbb_tree_interface
/**
* Get all of the item's descendants
*
- * @param int $item_id The item id the descendants should be retrieved from
+ * @param int $item_id Id of the item to retrieve the descendants from
* @param bool $order_asc Order the items ascendingly
* @param bool $include_item Should the item matching the given item id be included in the list as well
* @return array Array of items (containing all columns from the item table)
diff --git a/phpBB/includes/tree/nestedset.php b/phpBB/includes/tree/nestedset.php
index 2a639d8907..2f17ebab02 100644
--- a/phpBB/includes/tree/nestedset.php
+++ b/phpBB/includes/tree/nestedset.php
@@ -577,7 +577,7 @@ abstract class phpbb_tree_nestedset implements phpbb_tree_interface
/**
* Get items that are related to the given item by the condition
*
- * @param int $item_id The item id to get the node set from
+ * @param int $item_id Id of the item to retrieve the node set from
* @param string $condition Query string restricting the item list
* @param bool $order_asc Order the items ascending by their left_id
* @param bool $include_item Should the item matching the given item id be included in the list as well