Fix another unintentinal error

This commit is contained in:
DariusIII
2018-06-07 14:25:38 +02:00
parent c7002ce7da
commit 76291592dd
+1 -1
View File
@@ -1255,7 +1255,7 @@ class NameFixer
if (\strlen($this->_fileName) > 0 && strpos($this->_fileName, '.') !== 0) {
switch (true) {
case strpos($this->_fileName, '.') ``:
case strpos($this->_fileName, '.') !== false:
//some filenames start with a period that ends up creating bad matches so we don't process them
$this->_fileName = Utility::cutStringUsingLast('.', $this->_fileName, 'left', false);
continue;