Skip to content

Commit

Permalink
Corrected indentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
BrainforgeUK committed May 16, 2019
1 parent 4dc5480 commit 1888f69
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions libraries/src/MVC/Model/FormModel.php
Expand Up @@ -197,9 +197,10 @@ public function validate($form, $data, $group = null)
if (!empty($dispatcher->getListeners('onUserBeforeDataValidation')))
{
@trigger_error(
'The `onUserBeforeDataValidation` event is deprecated and will be removed in 5.0, use the `onContentValidateData` event instead.',
E_USER_DEPRECATED
);
'The `onUserBeforeDataValidation` event is deprecated and will be removed in 5.0.'
. 'Use the `onContentValidateData` event instead.',
E_USER_DEPRECATED
);

Factory::getApplication()->triggerEvent('onUserBeforeDataValidation', array($form, &$data));
}
Expand Down

0 comments on commit 1888f69

Please sign in to comment.