aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid King <imkingdavid@gmail.com>2013-12-08 15:01:53 -0500
committerDavid King <imkingdavid@gmail.com>2013-12-08 15:01:53 -0500
commit0b76880816f6f06ee41c4cc99c4a481a04ec459f (patch)
tree5af9dd813e280d3bd67222bea5395de934eedffa
parentfdac051956238ccd30a51641f4332a012eaf4a6e (diff)
downloadforums-0b76880816f6f06ee41c4cc99c4a481a04ec459f.tar
forums-0b76880816f6f06ee41c4cc99c4a481a04ec459f.tar.gz
forums-0b76880816f6f06ee41c4cc99c4a481a04ec459f.tar.bz2
forums-0b76880816f6f06ee41c4cc99c4a481a04ec459f.tar.xz
forums-0b76880816f6f06ee41c4cc99c4a481a04ec459f.zip
[ticket/12069] Fix event documentation
PHPBB3-12069
-rw-r--r--phpBB/includes/functions_posting.php4
1 files 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)));