aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDhruv <dhruv.goel92@gmail.com>2014-08-07 23:46:12 +0200
committerDhruv <dhruv.goel92@gmail.com>2014-08-07 23:46:12 +0200
commit833ba11113a4ff6743ba6375e5b69c325b3c175e (patch)
tree62fb7636df4aa777b45e010a898f9006364c8114
parent4c2b4b4145d88627c48ddcd88a71a76e58f4dfe2 (diff)
downloadforums-833ba11113a4ff6743ba6375e5b69c325b3c175e.tar
forums-833ba11113a4ff6743ba6375e5b69c325b3c175e.tar.gz
forums-833ba11113a4ff6743ba6375e5b69c325b3c175e.tar.bz2
forums-833ba11113a4ff6743ba6375e5b69c325b3c175e.tar.xz
forums-833ba11113a4ff6743ba6375e5b69c325b3c175e.zip
[ticket/12718] Fix docblocks
PHPBB3-12718
-rw-r--r--phpBB/phpbb/content_visibility.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/phpbb/content_visibility.php b/phpBB/phpbb/content_visibility.php
index 130bd36273..8bd537586e 100644
--- a/phpBB/phpbb/content_visibility.php
+++ b/phpBB/phpbb/content_visibility.php
@@ -570,7 +570,7 @@ class content_visibility
* Add post to topic and forum statistics
*
* @param $data array Contains information from the topics table about given topic
- * @param $sql_data array Populated with the SQL changes, may be empty at call time
+ * @param &$sql_data array Populated with the SQL changes, may be empty at call time
* @return null
*/
public function add_post_to_statistic($data, &$sql_data)
@@ -591,7 +591,7 @@ class content_visibility
* Remove post from topic and forum statistics
*
* @param $data array Contains information from the topics table about given topic
- * @param $sql_data array Populated with the SQL changes, may be empty at call time
+ * @param &$sql_data array Populated with the SQL changes, may be empty at call time
* @return null
*/
public function remove_post_from_statistic($data, &$sql_data)
@@ -624,7 +624,7 @@ class content_visibility
* Remove topic from forum statistics
*
* @param $data array Post and topic data
- * @param $sql_data array Populated with the SQL changes, may be empty at call time
+ * @param &$sql_data array Populated with the SQL changes, may be empty at call time
* @return null
*/
public function remove_topic_from_statistic($data, &$sql_data)