aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKailey Truscott <kinerity@yahoo.com>2018-09-25 07:42:55 -0400
committerKailey Truscott <kinerity@yahoo.com>2018-09-25 07:42:55 -0400
commit62c9996b2f5848ba9cc7b3211e62d6001e13d061 (patch)
treeecea256936c00b07798be84944b2916068d96b43
parenteb867fc62311970118d9c340c16073dbc01805b0 (diff)
downloadforums-62c9996b2f5848ba9cc7b3211e62d6001e13d061.tar
forums-62c9996b2f5848ba9cc7b3211e62d6001e13d061.tar.gz
forums-62c9996b2f5848ba9cc7b3211e62d6001e13d061.tar.bz2
forums-62c9996b2f5848ba9cc7b3211e62d6001e13d061.tar.xz
forums-62c9996b2f5848ba9cc7b3211e62d6001e13d061.zip
[ticket/15803] Change 'object' to 'bool'
PHPBB3-15803
-rw-r--r--phpBB/includes/ucp/ucp_pm_compose.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/includes/ucp/ucp_pm_compose.php b/phpBB/includes/ucp/ucp_pm_compose.php
index eeb77c3973..e168b643ef 100644
--- a/phpBB/includes/ucp/ucp_pm_compose.php
+++ b/phpBB/includes/ucp/ucp_pm_compose.php
@@ -1444,10 +1444,10 @@ function handle_message_list_actions(&$address_list, &$error, $remove_u, $remove
* @event core.message_list_actions
* @var array address_list The assoc array with the recipient user/group ids
* @var array error The array containing error data
- * @var object remove_u The variable for removing a user
- * @var object remove_g The variable for removing a group
- * @var object add_to The variable for adding a user to the [TO] field
- * @var object add_bcc The variable for adding a user to the [BCC] field
+ * @var bool remove_u The variable for removing a user
+ * @var bool remove_g The variable for removing a group
+ * @var bool add_to The variable for adding a user to the [TO] field
+ * @var bool add_bcc The variable for adding a user to the [BCC] field
* @since 3.2.4-RC1
*/
$vars = array('address_list', 'error', 'remove_u', 'remove_g', 'add_to', 'add_bcc');