1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-04-05 00:13:29 +02:00

Merge branch '3.2.x'

This commit is contained in:
Marc Alexander 2017-10-13 19:39:46 +02:00
commit c3939580b3
No known key found for this signature in database
GPG Key ID: 50E0D2423696F995

View File

@ -1485,12 +1485,14 @@ class acp_users
* Validate profile data in ACP before submitting to the database
*
* @event core.acp_users_profile_validate
* @var bool submit Flag indicating if submit button has been pressed
* @var array data Array with user profile data
* @var int user_id The user id
* @var array user_row Array with the full user data
* @var array error Array with the form errors
* @since 3.1.4-RC1
* @changed 3.1.12-RC1 Removed submit, added user_id, user_row
*/
$vars = array('submit', 'data', 'error');
$vars = array('data', 'user_id', 'user_row', 'error');
extract($phpbb_dispatcher->trigger_event('core.acp_users_profile_validate', compact($vars)));
if (!count($error))