diff options
Diffstat (limited to 'phpBB/includes')
-rw-r--r-- | phpBB/includes/tree/interface.php | 6 | ||||
-rw-r--r-- | phpBB/includes/tree/nestedset.php | 2 | ||||
-rw-r--r-- | phpBB/includes/tree/nestedset_forum.php | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/phpBB/includes/tree/interface.php b/phpBB/includes/tree/interface.php index 3f03363151..4e22e322f3 100644 --- a/phpBB/includes/tree/interface.php +++ b/phpBB/includes/tree/interface.php @@ -1,7 +1,7 @@ <?php /** * -* @package Tree +* @package tree * @copyright (c) 2013 phpBB Group * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 * @@ -18,7 +18,7 @@ if (!defined('IN_PHPBB')) interface phpbb_tree_interface { /** - * Insert an item into the tree + * Insert an item into the tree (also insert the rows into the table) * * @param array $item The item to be added * @return array Array with item data as set in the database @@ -26,7 +26,7 @@ interface phpbb_tree_interface public function insert(array $additional_data); /** - * Delete an item from the tree + * Delete an item from the tree (also deletes the rows form the table) * * Also deletes all subitems from the tree * diff --git a/phpBB/includes/tree/nestedset.php b/phpBB/includes/tree/nestedset.php index 245a8165ef..ffe8687e54 100644 --- a/phpBB/includes/tree/nestedset.php +++ b/phpBB/includes/tree/nestedset.php @@ -1,7 +1,7 @@ <?php /** * -* @package Tree - Nested Set +* @package tree - nestedset * @copyright (c) 2013 phpBB Group * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 * diff --git a/phpBB/includes/tree/nestedset_forum.php b/phpBB/includes/tree/nestedset_forum.php index 7dcb12331c..06ef37e971 100644 --- a/phpBB/includes/tree/nestedset_forum.php +++ b/phpBB/includes/tree/nestedset_forum.php @@ -1,7 +1,7 @@ <?php /** * -* @package Tree - Nested Set Forum +* @package tree - nestedset forum * @copyright (c) 2013 phpBB Group * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 * |