diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2013-04-30 18:13:32 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2013-04-30 18:13:32 +0200 |
commit | 98e6207c35910bf9761433e62ca5fe5af3459873 (patch) | |
tree | 3f6f62c53651580f3b71893cf2e2aed30dc46461 /phpBB/includes | |
parent | fe02218a2d2f5634e22e494f7b85f9701fa57623 (diff) | |
download | forums-98e6207c35910bf9761433e62ca5fe5af3459873.tar forums-98e6207c35910bf9761433e62ca5fe5af3459873.tar.gz forums-98e6207c35910bf9761433e62ca5fe5af3459873.tar.bz2 forums-98e6207c35910bf9761433e62ca5fe5af3459873.tar.xz forums-98e6207c35910bf9761433e62ca5fe5af3459873.zip |
[ticket/11495] Fix "as well" typo and remove brackets
PHPBB3-11495
Diffstat (limited to 'phpBB/includes')
-rw-r--r-- | phpBB/includes/tree/interface.php | 6 | ||||
-rw-r--r-- | phpBB/includes/tree/nestedset.php | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/includes/tree/interface.php b/phpBB/includes/tree/interface.php index 9bd633a5eb..546e00ed06 100644 --- a/phpBB/includes/tree/interface.php +++ b/phpBB/includes/tree/interface.php @@ -92,7 +92,7 @@ interface phpbb_tree_interface * * @param int $item_id The item to get the ancestors/descendants from * @param bool $order_asc Order the items ascending (most outer ancestor first) - * @param bool $include_item Should the item (matching the given item id) be included in the list aswell + * @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) * ID => Item data */ @@ -103,7 +103,7 @@ interface phpbb_tree_interface * * @param int $item_id The item id to get the ancestors from * @param bool $order_asc Order the items ascending (most outer ancestor first) - * @param bool $include_item Should the item (matching the given item id) be included in the list aswell + * @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) * ID => Item data */ @@ -114,7 +114,7 @@ interface phpbb_tree_interface * * @param int $item_id The item id to get the descendants from * @param bool $order_asc Order the items ascending - * @param bool $include_item Should the item (matching the given item id) be included in the list aswell + * @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) * ID => Item data */ diff --git a/phpBB/includes/tree/nestedset.php b/phpBB/includes/tree/nestedset.php index 1f414164df..2a639d8907 100644 --- a/phpBB/includes/tree/nestedset.php +++ b/phpBB/includes/tree/nestedset.php @@ -580,7 +580,7 @@ abstract class phpbb_tree_nestedset implements phpbb_tree_interface * @param int $item_id The item id to get 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 aswell + * @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) * ID => Item data */ |