aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorMate Bartus <mate.bartus@gmail.com>2015-11-30 18:27:06 +0100
committerMate Bartus <mate.bartus@gmail.com>2015-11-30 18:27:06 +0100
commitfad26c97bc6c1abceda71dfee5b84823b5a70083 (patch)
tree2149c3c692dbd138a2d7bd51bcdb91ca6162795d /phpBB/includes
parent065b0a632f308366c7383a322c620b7f2db7b97d (diff)
downloadforums-fad26c97bc6c1abceda71dfee5b84823b5a70083.tar
forums-fad26c97bc6c1abceda71dfee5b84823b5a70083.tar.gz
forums-fad26c97bc6c1abceda71dfee5b84823b5a70083.tar.bz2
forums-fad26c97bc6c1abceda71dfee5b84823b5a70083.tar.xz
forums-fad26c97bc6c1abceda71dfee5b84823b5a70083.zip
[ticket/14325] Fix variable names in docblocks
PHPBB3-14325
Diffstat (limited to 'phpBB/includes')
-rw-r--r--phpBB/includes/functions_posting.php4
-rw-r--r--phpBB/includes/functions_privmsgs.php2
2 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/functions_posting.php b/phpBB/includes/functions_posting.php
index a5b3111257..66140a5278 100644
--- a/phpBB/includes/functions_posting.php
+++ b/phpBB/includes/functions_posting.php
@@ -1725,8 +1725,8 @@ function submit_post($mode, $subject, $username, $topic_type, &$poll_ary, &$data
* Modify sql query data for post submitting
*
* @event core.submit_post_modify_sql_data
- * @var array data_ary Array with the data for the post
- * @var array poll_ary Array with the poll data for the post
+ * @var array data Array with the data for the post
+ * @var array poll Array with the poll data for the post
* @var string post_mode Variable containing posting mode value
* @var bool sql_data Array with the data for the posting SQL query
* @var string subject Variable containing post subject value
diff --git a/phpBB/includes/functions_privmsgs.php b/phpBB/includes/functions_privmsgs.php
index cd1632846e..f5cbb093d6 100644
--- a/phpBB/includes/functions_privmsgs.php
+++ b/phpBB/includes/functions_privmsgs.php
@@ -1949,7 +1949,7 @@ function submit_pm($mode, $subject, &$data_ary, $put_in_outbox = true)
* @event core.submit_pm_after
* @var string mode PM Post mode - post|reply|quote|quotepost|forward|edit
* @var string subject Subject of the private message
- * @var array data_ary The whole row data of the PM.
+ * @var array data The whole row data of the PM.
* @var array pm_data The data sent to notification class
* @since 3.1.0-b5
*/