diff options
| author | Matt Friedman <maf675@gmail.com> | 2013-12-12 13:59:30 -0800 |
|---|---|---|
| committer | Matt Friedman <maf675@gmail.com> | 2013-12-12 13:59:30 -0800 |
| commit | 730a05bd3036b5612e1f7485b3e7be85c73bfbba (patch) | |
| tree | 3f0d82d8cd712633dd97996ff929f1f7dde0412b /phpBB/includes | |
| parent | caca36bc50f2e949c6e3b65124ba1df0b23cf2af (diff) | |
| download | forums-730a05bd3036b5612e1f7485b3e7be85c73bfbba.tar forums-730a05bd3036b5612e1f7485b3e7be85c73bfbba.tar.gz forums-730a05bd3036b5612e1f7485b3e7be85c73bfbba.tar.bz2 forums-730a05bd3036b5612e1f7485b3e7be85c73bfbba.tar.xz forums-730a05bd3036b5612e1f7485b3e7be85c73bfbba.zip | |
[ticket/12060] Update the docblock comments in acp core events
PHPBB3-12060
Diffstat (limited to 'phpBB/includes')
| -rw-r--r-- | phpBB/includes/acp/acp_bbcodes.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/includes/acp/acp_bbcodes.php b/phpBB/includes/acp/acp_bbcodes.php index 267bb35fd2..eb841966e1 100644 --- a/phpBB/includes/acp/acp_bbcodes.php +++ b/phpBB/includes/acp/acp_bbcodes.php @@ -111,7 +111,7 @@ class acp_bbcodes $bbcode_tokens = array('TEXT', 'SIMPLETEXT', 'INTTEXT', 'IDENTIFIER', 'NUMBER', 'EMAIL', 'URL', 'LOCAL_URL', 'RELATIVE_URL', 'COLOR'); /** - * Modify bbcode template before we display the add/edit form + * Event to modify custom bbcode template before displaying the add/edit form * * @event core.acp_bbcodes_edit_add * @var string action Type of the action: add|edit @@ -143,7 +143,7 @@ class acp_bbcodes $sql_ary = $hidden_fields = array(); /** - * Modify bbcode data before modify/create + * Event to modify custom bbcode data before modify/create * * @event core.acp_bbcodes_modify_create * @var string action Type of the action: modify|create @@ -349,7 +349,7 @@ class acp_bbcodes ); /** - * Modify bbcode template data before we display the form + * Event to modify custom bbcode template data before displaying the form * * @event core.acp_bbcodes_display_form * @var string action Type of the action: modify|create @@ -374,7 +374,7 @@ class acp_bbcodes ); /** - * Modify display of bbcodes in the form + * Event to modify display of custom bbcodes in the form * * @event core.acp_bbcodes_display_bbcodes * @var array row Array with current bbcode data |
