diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2013-04-25 14:08:06 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2013-04-25 14:08:06 +0200 |
commit | 9d7d962c0db3425e9448eb07649c6709664a56bd (patch) | |
tree | 16c2d942648fae52424199b592107f919aa73f0f | |
parent | fe97915fc91e4fbfb211e3eb6038dd1b482553dd (diff) | |
download | forums-9d7d962c0db3425e9448eb07649c6709664a56bd.tar forums-9d7d962c0db3425e9448eb07649c6709664a56bd.tar.gz forums-9d7d962c0db3425e9448eb07649c6709664a56bd.tar.bz2 forums-9d7d962c0db3425e9448eb07649c6709664a56bd.tar.xz forums-9d7d962c0db3425e9448eb07649c6709664a56bd.zip |
[ticket/11495] Explain what "given item" means
PHPBB3-11495
-rw-r--r-- | phpBB/includes/nestedset/base.php | 2 | ||||
-rw-r--r-- | phpBB/includes/nestedset/interface.php | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/includes/nestedset/base.php b/phpBB/includes/nestedset/base.php index fe6318304d..328621a68d 100644 --- a/phpBB/includes/nestedset/base.php +++ b/phpBB/includes/nestedset/base.php @@ -524,7 +524,7 @@ abstract class phpbb_nestedset_base implements phpbb_nestedset_interface * @param int $item_id The item id to get the parents/children from * @param string $condition Query string restricting the item list * @param bool $order_desc Order the items descending (most outer parent first) - * @param bool $include_item Should the given item be included in the list aswell + * @param bool $include_item Should the item (matching the given item id) be included in the list aswell * @return array Array of items (containing all columns from the item table) * ID => Item data */ diff --git a/phpBB/includes/nestedset/interface.php b/phpBB/includes/nestedset/interface.php index ee78016425..eadc9083b1 100644 --- a/phpBB/includes/nestedset/interface.php +++ b/phpBB/includes/nestedset/interface.php @@ -110,7 +110,7 @@ interface phpbb_nestedset_interface * * @param int $item_id The item id to get the parents/children from * @param bool $order_desc Order the items descending (most outer parent first) - * @param bool $include_item Should the given item be included in the list aswell + * @param bool $include_item Should the item (matching the given item id) be included in the list aswell * @return array Array of items (containing all columns from the item table) * ID => Item data */ @@ -121,7 +121,7 @@ interface phpbb_nestedset_interface * * @param int $item_id The item id to get the parents from * @param bool $order_desc Order the items descending (most outer parent first) - * @param bool $include_item Should the given item be included in the list aswell + * @param bool $include_item Should the item (matching the given item id) be included in the list aswell * @return array Array of items (containing all columns from the item table) * ID => Item data */ @@ -132,7 +132,7 @@ interface phpbb_nestedset_interface * * @param int $item_id The item id to get the children from * @param bool $order_desc Order the items descending (most outer parent first) - * @param bool $include_item Should the given item be included in the list aswell + * @param bool $include_item Should the item (matching the given item id) be included in the list aswell * @return array Array of items (containing all columns from the item table) * ID => Item data */ |