diff options
author | Matt Friedman <maf675@gmail.com> | 2013-12-12 14:09:58 -0800 |
---|---|---|
committer | Matt Friedman <maf675@gmail.com> | 2013-12-12 14:09:58 -0800 |
commit | 21e269b9ca026ec56c285fafe9f947d144c5c31d (patch) | |
tree | 3492dbf5b7be89509347fd4b454954ecb5483ff7 /phpBB/includes | |
parent | 75831dc2d0bb79007db14d0c2a86cbb024d98a31 (diff) | |
download | forums-21e269b9ca026ec56c285fafe9f947d144c5c31d.tar forums-21e269b9ca026ec56c285fafe9f947d144c5c31d.tar.gz forums-21e269b9ca026ec56c285fafe9f947d144c5c31d.tar.bz2 forums-21e269b9ca026ec56c285fafe9f947d144c5c31d.tar.xz forums-21e269b9ca026ec56c285fafe9f947d144c5c31d.zip |
[ticket/12060] Fix u_action comments in docblocks
PHPBB3-12060
Diffstat (limited to 'phpBB/includes')
-rw-r--r-- | phpBB/includes/acp/acp_bbcodes.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/acp/acp_bbcodes.php b/phpBB/includes/acp/acp_bbcodes.php index 8368f98602..f3341c9031 100644 --- a/phpBB/includes/acp/acp_bbcodes.php +++ b/phpBB/includes/acp/acp_bbcodes.php @@ -355,7 +355,7 @@ class acp_bbcodes * @var string action Type of the action: modify|create * @var string sql_ary The SQL array to get custom bbcode data * @var array template_data Array with form template data - * @var object u_action $this->u_action object + * @var string u_action The u_action link * @since 3.1.0-A3 */ $vars = array('action', 'sql_ary', 'template_data', 'u_action'); @@ -379,7 +379,7 @@ class acp_bbcodes * @event core.acp_bbcodes_display_bbcodes * @var array row Array with current bbcode data * @var array bbcodes_array Array of bbcodes template data - * @var object u_action $this->u_action object + * @var string u_action The u_action link * @since 3.1.0-A3 */ $vars = array('bbcodes_array', 'row', 'u_action'); |