[ticket/14234] Fix event doc blocks

PHPBB3-14234
This commit is contained in:
Marc Alexander 2015-10-12 22:20:52 +02:00
parent 75e5e2471e
commit 102d737d81
3 changed files with 2 additions and 3 deletions

View file

@ -393,7 +393,7 @@ function build_cfg_template($tpl_type, $key, &$new, $config_key, $vars)
* 1 [optional] => string: size, int: minimum * 1 [optional] => string: size, int: minimum
* 2 [optional] => string: max. length, int: maximum * 2 [optional] => string: max. length, int: maximum
* @var string key Should be used for the id attribute in html * @var string key Should be used for the id attribute in html
* @var array new_var Array with the config values we display * @var array new_ary Array with the config values we display
* @var string name Should be used for the name attribute * @var string name Should be used for the name attribute
* @var array vars Array with the options for the config * @var array vars Array with the options for the config
* @var string tpl The resulting html code we display * @var string tpl The resulting html code we display

View file

@ -344,7 +344,7 @@ function mcp_forum_view($id, $mode, $action, $forum_info)
* @since 3.1.0-a1 * @since 3.1.0-a1
* @change 3.2.0-a1 Replace row with row_ary * @change 3.2.0-a1 Replace row with row_ary
*/ */
$vars = array('row', 'topic_row'); $vars = array('row_ary', 'topic_row');
extract($phpbb_dispatcher->trigger_event('core.mcp_view_forum_modify_topicrow', compact($vars))); extract($phpbb_dispatcher->trigger_event('core.mcp_view_forum_modify_topicrow', compact($vars)));
$row = $row_ary; $row = $row_ary;
unset($row_ary); unset($row_ary);

View file

@ -331,7 +331,6 @@ function compose_pm($id, $mode, $action, $user_folders = array())
* @var string sql The original SQL used in the query * @var string sql The original SQL used in the query
* @var array post Associative array with the data of the quoted post * @var array post Associative array with the data of the quoted post
* @var array msg_id The post_id that was searched to get the message for quoting * @var array msg_id The post_id that was searched to get the message for quoting
* @var int topic_id Topic ID of the quoted post
* @var int to_user_id Users the message is sent to * @var int to_user_id Users the message is sent to
* @var int to_group_id Groups the message is sent to * @var int to_group_id Groups the message is sent to
* @var bool submit Whether the user is sending the PM or not * @var bool submit Whether the user is sending the PM or not