mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
[ticket/12060] Update docblock for core event due to addition of another var
PHPBB3-12060
This commit is contained in:
parent
9e0dd14e19
commit
b6eb1f66e1
1 changed files with 6 additions and 5 deletions
|
@ -1252,11 +1252,12 @@ class parse_message extends bbcode_firstpass
|
||||||
* Use this event to modify the text after it is parsed
|
* Use this event to modify the text after it is parsed
|
||||||
*
|
*
|
||||||
* @event core.modify_text_for_format_display_after
|
* @event core.modify_text_for_format_display_after
|
||||||
* @var string text The text to parse
|
* @var string text The text to parse
|
||||||
* @var string uid The BBCode UID
|
* @var string uid The BBCode UID
|
||||||
* @var bool allow_bbcode Allow BBCodes switch
|
* @var bool allow_bbcode Allow BBCodes switch
|
||||||
* @var bool allow_magic_url Allow magic urls switch
|
* @var bool allow_magic_url Allow magic urls switch
|
||||||
* @var bool allow_smilies Allow smilies switch
|
* @var bool allow_smilies Allow smilies switch
|
||||||
|
* @var bool update_this_message Update message switch
|
||||||
* @since 3.1-A3
|
* @since 3.1-A3
|
||||||
*/
|
*/
|
||||||
$vars = array('text', 'uid', 'allow_bbcode', 'allow_magic_url', 'allow_smilies', 'update_this_message');
|
$vars = array('text', 'uid', 'allow_bbcode', 'allow_magic_url', 'allow_smilies', 'update_this_message');
|
||||||
|
|
Loading…
Add table
Reference in a new issue