diff options
author | rxu <rxu@mail.ru> | 2017-03-21 22:31:18 +0700 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2018-01-06 11:10:43 +0100 |
commit | 101e6c8f96e29d96c4b66c6257f809366dbfe351 (patch) | |
tree | b146bd4e339f9688470cc6014fdfdfc7cbc04652 /phpBB/phpbb | |
parent | 39b142077478876b4c2ef270c081681070f264d7 (diff) | |
download | forums-101e6c8f96e29d96c4b66c6257f809366dbfe351.tar forums-101e6c8f96e29d96c4b66c6257f809366dbfe351.tar.gz forums-101e6c8f96e29d96c4b66c6257f809366dbfe351.tar.bz2 forums-101e6c8f96e29d96c4b66c6257f809366dbfe351.tar.xz forums-101e6c8f96e29d96c4b66c6257f809366dbfe351.zip |
[ticket/14972] Fix create_insert_array() declaration in admin_activate_user
PHPBB3-14972
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r-- | phpBB/phpbb/notification/type/admin_activate_user.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/notification/type/admin_activate_user.php b/phpBB/phpbb/notification/type/admin_activate_user.php index 9f2ae857ef..78c10ac36a 100644 --- a/phpBB/phpbb/notification/type/admin_activate_user.php +++ b/phpBB/phpbb/notification/type/admin_activate_user.php @@ -175,7 +175,7 @@ class admin_activate_user extends \phpbb\notification\type\base /** * {@inheritdoc} */ - public function create_insert_array($user, $pre_create_data) + public function create_insert_array($user, $pre_create_data = array()) { $this->set_data('user_actkey', $user['user_actkey']); $this->notification_time = $user['user_regdate']; |