BUGFIX TarballArchive::extractTo() uses an incorrectly spelled argument (from r111126)

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@112897 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Sam Minnee 2010-10-19 03:47:26 +00:00
parent b573414486
commit c939b02333

View File

@ -75,7 +75,7 @@ class TarballArchive extends Archive {
return $listing;
}
function extractTo($destination, $entires = null) {
function extractTo($destination, $entries = null) {
if(!isset($entries)) {
$command = "tar -xv{$this->compressionModifiers}f ../$this->filename --directory $destination";
$output = `$command`;