[ticket/12273] Fix invalid @event and @since tags

PHPBB3-12273
This commit is contained in:
Joas Schilling 2014-04-17 15:06:24 +02:00
parent 9ba9a024d6
commit 7b53210926
3 changed files with 3 additions and 3 deletions

View file

@ -409,7 +409,7 @@ class p_master
* @var string module_auth The module_auth of the current * @var string module_auth The module_auth of the current
* module * module
* @var int forum_id The current forum_id * @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'); $vars = array('valid_tokens', 'module_auth', 'forum_id');
extract($phpbb_dispatcher->trigger_event('core.module_auth', compact($vars))); extract($phpbb_dispatcher->trigger_event('core.module_auth', compact($vars)));

View file

@ -2345,7 +2345,7 @@ function submit_post($mode, $subject, $username, $topic_type, &$poll, &$data, $u
* @var string url The "Return to topic" URL * @var string url The "Return to topic" URL
* @var array data Array of post data about the * @var array data Array of post data about the
* submitted post * submitted post
* @since 3.1-A3 * @since 3.1.0-a3
*/ */
$vars = array('url', 'data'); $vars = array('url', 'data');
extract($phpbb_dispatcher->trigger_event('core.submit_post_end', compact($vars))); extract($phpbb_dispatcher->trigger_event('core.submit_post_end', compact($vars)));

View file

@ -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. * 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 mode PM Post mode - post|reply|quote|quotepost|forward|edit
* @var string subject Subject of the private message * @var string subject Subject of the private message
* @var array data The whole row data of the PM. * @var array data The whole row data of the PM.