Skip to content

Commit

Permalink
fixed fatal error
Browse files Browse the repository at this point in the history
  • Loading branch information
bennyborn committed Jul 27, 2017
1 parent eab4669 commit e2dfeb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion classes/CheckFilenames.php
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ protected static function replaceUnderscores( $strFile ) {
$newFilename = str_replace( "__", "_", $strFile );

if( $newFilename != $strFile ) {
$newFilename = $this->replaceUnderscores( $newFilename );
$newFilename = self::replaceUnderscores( $newFilename );
}

return $newFilename;
Expand Down

0 comments on commit e2dfeb3

Please sign in to comment.