Skip to content

Commit

Permalink
Fixed wrong old-style constructor usage
Browse files Browse the repository at this point in the history
  • Loading branch information
glye committed Mar 3, 2020
1 parent 8c9b706 commit 8d4e0f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ezutils/classes/ezfileextensionblacklistvalidator.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class eZFileExtensionBlackListValidator extends eZInputValidator
*/
function __construct()
{
parent::eZInputValidator();
parent::__construct();

$fileIni = eZINI::instance('file.ini');
$this->constraints['extensionsBlackList'] = $fileIni->variable('FileSettings','FileExtensionBlackList');
Expand Down

0 comments on commit 8d4e0f0

Please sign in to comment.