From 0b76880816f6f06ee41c4cc99c4a481a04ec459f Mon Sep 17 00:00:00 2001 From: David King Date: Sun, 8 Dec 2013 15:01:53 -0500 Subject: [PATCH] [ticket/12069] Fix event documentation PHPBB3-12069 --- phpBB/includes/functions_posting.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phpBB/includes/functions_posting.php b/phpBB/includes/functions_posting.php index e71b44a45b..1c4fe1ca70 100644 --- a/phpBB/includes/functions_posting.php +++ b/phpBB/includes/functions_posting.php @@ -2311,13 +2311,13 @@ function submit_post($mode, $subject, $username, $topic_type, &$poll, &$data, $u * available in the $data array. * * The only action that can be done by altering data made available to this - * event is to modify the return URL ($urL). + * event is to modify the return URL ($url). * * @event core.submit_post_end * @var string url The "Return to topic" URL * @var array data Array of post data about the * submitted post - * @since 3.1-A2 + * @since 3.1-A3 */ $vars = array('url', 'data'); extract($phpbb_dispatcher->trigger_event('core.submit_post_end', compact($vars)));