aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_user.php
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2017-02-21 22:15:12 +0100
committerMarc Alexander <admin@m-a-styles.de>2017-02-21 22:15:12 +0100
commitbc86210db82e4336a82389cb26e652a2ce63f7c7 (patch)
tree8a5704516bf3119e708b3acfa139024c5313b9fc /phpBB/includes/functions_user.php
parentbac6dbda5e457ba5d1347b342616433be75b590d (diff)
downloadforums-bc86210db82e4336a82389cb26e652a2ce63f7c7.tar
forums-bc86210db82e4336a82389cb26e652a2ce63f7c7.tar.gz
forums-bc86210db82e4336a82389cb26e652a2ce63f7c7.tar.bz2
forums-bc86210db82e4336a82389cb26e652a2ce63f7c7.tar.xz
forums-bc86210db82e4336a82389cb26e652a2ce63f7c7.zip
[ticket/14927] Put vars on one line
PHPBB3-14927
Diffstat (limited to 'phpBB/includes/functions_user.php')
-rw-r--r--phpBB/includes/functions_user.php6
1 files changed, 1 insertions, 5 deletions
diff --git a/phpBB/includes/functions_user.php b/phpBB/includes/functions_user.php
index f222f33eb2..4aecbff6ba 100644
--- a/phpBB/includes/functions_user.php
+++ b/phpBB/includes/functions_user.php
@@ -280,11 +280,7 @@ function user_add($user_row, $cp_data = false, $notifications_data = null)
* @changed 3.1.0-b5 Added user_row and cp_data
* @changed 3.1.11-RC1 Added notifications_data
*/
- $vars = array(
- 'user_row',
- 'cp_data',
- 'sql_ary',
- 'notifications_data');
+ $vars = array('user_row', 'cp_data', 'sql_ary', 'notifications_data');
extract($phpbb_dispatcher->trigger_event('core.user_add_modify_data', compact($vars)));
$sql = 'INSERT INTO ' . USERS_TABLE . ' ' . $db->sql_build_array('INSERT', $sql_ary);