Skip to content
This repository has been archived by the owner on Nov 26, 2017. It is now read-only.

Commit

Permalink
Merge pull request #1451 from jms2win/patch-1
Browse files Browse the repository at this point in the history
Add missing return in the "extract()"
  • Loading branch information
pasamio committed Aug 14, 2012
2 parents d8694d9 + e8145d2 commit c77f323
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libraries/joomla/archive/zip.php
Expand Up @@ -139,11 +139,11 @@ public function extract($archive, $destination, array $options = array())

if ($this->hasNativeSupport())
{
$this->_extractNative($archive, $destination, $options);
return $this->_extractNative($archive, $destination, $options);
}
else
{
$this->_extract($archive, $destination, $options);
return $this->_extract($archive, $destination, $options);
}
}

Expand Down

0 comments on commit c77f323

Please sign in to comment.