diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-04-17 15:06:24 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-04-18 13:07:40 +0200 |
commit | 7b5321092639b0f508fe160f5a58b834247982dd (patch) | |
tree | b184f7bbd35c2bfe9f39f2e47291993371017f8b | |
parent | 9ba9a024d6a72eb81d77347eb866e73556b81051 (diff) | |
download | forums-7b5321092639b0f508fe160f5a58b834247982dd.tar forums-7b5321092639b0f508fe160f5a58b834247982dd.tar.gz forums-7b5321092639b0f508fe160f5a58b834247982dd.tar.bz2 forums-7b5321092639b0f508fe160f5a58b834247982dd.tar.xz forums-7b5321092639b0f508fe160f5a58b834247982dd.zip |
[ticket/12273] Fix invalid @event and @since tags
PHPBB3-12273
-rw-r--r-- | phpBB/includes/functions_module.php | 2 | ||||
-rw-r--r-- | phpBB/includes/functions_posting.php | 2 | ||||
-rw-r--r-- | phpBB/includes/functions_privmsgs.php | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/functions_module.php b/phpBB/includes/functions_module.php index be066de0f0..7531883ed9 100644 --- a/phpBB/includes/functions_module.php +++ b/phpBB/includes/functions_module.php @@ -409,7 +409,7 @@ class p_master * @var string module_auth The module_auth of the current * module * @var int forum_id The current forum_id - * @since 3.1-A3 + * @since 3.1.0-a3 */ $vars = array('valid_tokens', 'module_auth', 'forum_id'); extract($phpbb_dispatcher->trigger_event('core.module_auth', compact($vars))); diff --git a/phpBB/includes/functions_posting.php b/phpBB/includes/functions_posting.php index 51bbcb8bae..638b94c220 100644 --- a/phpBB/includes/functions_posting.php +++ b/phpBB/includes/functions_posting.php @@ -2345,7 +2345,7 @@ function submit_post($mode, $subject, $username, $topic_type, &$poll, &$data, $u * @var string url The "Return to topic" URL * @var array data Array of post data about the * submitted post - * @since 3.1-A3 + * @since 3.1.0-a3 */ $vars = array('url', 'data'); extract($phpbb_dispatcher->trigger_event('core.submit_post_end', compact($vars))); diff --git a/phpBB/includes/functions_privmsgs.php b/phpBB/includes/functions_privmsgs.php index 9b44984dfa..7b075fc4a1 100644 --- a/phpBB/includes/functions_privmsgs.php +++ b/phpBB/includes/functions_privmsgs.php @@ -1588,7 +1588,7 @@ function submit_pm($mode, $subject, &$data, $put_in_outbox = true) /** * Get all parts of the PM that are to be submited to the DB. * - * @event core.submit_pm_before + * @event core.submit_pm_before * @var string mode PM Post mode - post|reply|quote|quotepost|forward|edit * @var string subject Subject of the private message * @var array data The whole row data of the PM. |