Skip to content

Commit

Permalink
Merge pull request #27 from MaxVoronov/master
Browse files Browse the repository at this point in the history
Fixed bug uppercase image extensions, Fixed #26
  • Loading branch information
ojhaujjwal committed May 27, 2015
2 parents 450d7ab + ed8c8f1 commit 5d69b44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/View/Strategy/ImageStrategy.php
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ protected function getMimeType($format)
'wbmp' => 'image/vnd.wap.wbmp',
'xbm' => 'image/xbm',
);

$format = strtolower($format);
return $mimeTypes[$format];
}
}

0 comments on commit 5d69b44

Please sign in to comment.