Skip to content

Commit

Permalink
Merge pull request #9 from kdambekalns/patch-1
Browse files Browse the repository at this point in the history
BUGFIX: Fix wrong detection of dimensions prefix
  • Loading branch information
aertmann authored Sep 13, 2016
2 parents 79e85cd + 6b7dea2 commit b5fcfc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/MOC/NotFound/ViewHelpers/RequestViewHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ protected function appendFirstUriPartIfValidDimension(&$path) {
}
}
} else {
if (count($firstUriPartExploded) === count($dimensionPresets)) {
if (count($firstUriPartExploded) !== count($dimensionPresets)) {
return;
}
foreach ($dimensionPresets as $dimensionName => $dimensionPreset) {
Expand Down

0 comments on commit b5fcfc8

Please sign in to comment.