diff options
author | Matt Friedman <maf675@gmail.com> | 2013-12-12 10:37:11 -0800 |
---|---|---|
committer | Matt Friedman <maf675@gmail.com> | 2013-12-12 10:37:11 -0800 |
commit | b6eb1f66e169cd0cae3fc2c617588cb9e7c9c53b (patch) | |
tree | dcf74675b61ff8bfaf5141875cb843116006c50a /phpBB/includes/message_parser.php | |
parent | 9e0dd14e1973eea7db3cad3426381999bf2a8bdb (diff) | |
download | forums-b6eb1f66e169cd0cae3fc2c617588cb9e7c9c53b.tar forums-b6eb1f66e169cd0cae3fc2c617588cb9e7c9c53b.tar.gz forums-b6eb1f66e169cd0cae3fc2c617588cb9e7c9c53b.tar.bz2 forums-b6eb1f66e169cd0cae3fc2c617588cb9e7c9c53b.tar.xz forums-b6eb1f66e169cd0cae3fc2c617588cb9e7c9c53b.zip |
[ticket/12060] Update docblock for core event due to addition of another var
PHPBB3-12060
Diffstat (limited to 'phpBB/includes/message_parser.php')
-rw-r--r-- | phpBB/includes/message_parser.php | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/phpBB/includes/message_parser.php b/phpBB/includes/message_parser.php index 04fadf33e8..5c543d8498 100644 --- a/phpBB/includes/message_parser.php +++ b/phpBB/includes/message_parser.php @@ -1252,11 +1252,12 @@ class parse_message extends bbcode_firstpass * Use this event to modify the text after it is parsed * * @event core.modify_text_for_format_display_after - * @var string text The text to parse - * @var string uid The BBCode UID - * @var bool allow_bbcode Allow BBCodes switch - * @var bool allow_magic_url Allow magic urls switch - * @var bool allow_smilies Allow smilies switch + * @var string text The text to parse + * @var string uid The BBCode UID + * @var bool allow_bbcode Allow BBCodes switch + * @var bool allow_magic_url Allow magic urls switch + * @var bool allow_smilies Allow smilies switch + * @var bool update_this_message Update message switch * @since 3.1-A3 */ $vars = array('text', 'uid', 'allow_bbcode', 'allow_magic_url', 'allow_smilies', 'update_this_message'); |