Skip to content

Commit

Permalink
Additional commit for change set b5d08c4
Browse files Browse the repository at this point in the history
  • Loading branch information
dengenxp committed Jan 27, 2017
1 parent b5d08c4 commit 90e6add
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system/classes/unpacker.class.php
Expand Up @@ -117,7 +117,7 @@ public function open($file, $mimeType = null)
// copy vars
$this->file = $file;
$this->fileSize = filesize($file);
$this->ext = substr($file, strrpos($file, '.'));
$this->ext = strtolower(substr($file, strrpos($file, '.')));

// if the type is passed, store it
if (!empty($mimeType)) {
Expand Down

0 comments on commit 90e6add

Please sign in to comment.