Skip to content

Commit

Permalink
Bug #162401 Fix: Warning on com_tjcertificate edit template view (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
MeghaBiranje authored Jun 19, 2020
1 parent d9f21f5 commit 50802e1
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -184,14 +184,15 @@ protected function populateState()
/**
* Method to validate the form data.
*
* @param \JForm $form The form to validate against.
* @param JForm $form The form to validate against.
* @param Array $data The data to validate.
* @param string $group The name of the field group to validate.
*
* @return array|boolean Array of filtered data if valid, false otherwise.
*
* @since 12.2
*/
public function validate($form, $data)
public function validate($form, $data, $group = null)
{
$return = true;
$return = parent::validate($form, $data);
Expand Down

0 comments on commit 50802e1

Please sign in to comment.