Skip to content

Commit

Permalink
Merge pull request #15 from Texungo/patch-1
Browse files Browse the repository at this point in the history
Missing "$config" argument
  • Loading branch information
mewebstudio committed Dec 31, 2014
2 parents 5750567 + e2cd851 commit e413287
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Mews/Purifier/Purifier.php
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public static function clean($dirty, $config = null)
foreach ($dirty as $key => $value)
{
// Recursively clean arrays
$clean[$key] = Purifier::clean($value);
$clean[$key] = Purifier::clean($value, $config);
}
}
else
Expand Down

0 comments on commit e413287

Please sign in to comment.