aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_posting.php
diff options
context:
space:
mode:
authorNathan Guse <nathaniel.guse@gmail.com>2013-12-08 12:03:33 -0800
committerNathan Guse <nathaniel.guse@gmail.com>2013-12-08 12:03:33 -0800
commite379b84c7b8d70afb6c8c36f38d60ca84dacbc5e (patch)
treee10f0c6a62bf36d6bc34e609955f5ceca93b5612 /phpBB/includes/functions_posting.php
parent44a0e91ab95d1e8584ac75c9bb3d8fe9ff7f59de (diff)
parent0b76880816f6f06ee41c4cc99c4a481a04ec459f (diff)
downloadforums-e379b84c7b8d70afb6c8c36f38d60ca84dacbc5e.tar
forums-e379b84c7b8d70afb6c8c36f38d60ca84dacbc5e.tar.gz
forums-e379b84c7b8d70afb6c8c36f38d60ca84dacbc5e.tar.bz2
forums-e379b84c7b8d70afb6c8c36f38d60ca84dacbc5e.tar.xz
forums-e379b84c7b8d70afb6c8c36f38d60ca84dacbc5e.zip
Merge pull request #1926 from imkingdavid/ticket/12069
[ticket/12069] Fix event documentation
Diffstat (limited to 'phpBB/includes/functions_posting.php')
-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)));