summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-12-29 04:01:40 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-12-29 04:01:40 +0000
commitcc27bb5e8c9a650a8454dbc82d0959f87fd85e37 (patch)
tree43b539555bc4d7a26f9593040787513c1623266d
parent2ec8e339c7e6848135f68c92bed12347e7a2b513 (diff)
downloadbrdo-cc27bb5e8c9a650a8454dbc82d0959f87fd85e37.tar.gz
brdo-cc27bb5e8c9a650a8454dbc82d0959f87fd85e37.tar.bz2
#977450 by hass: Fix typo in variable namein ArchiverZip->remove().
-rw-r--r--modules/system/system.archiver.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/system/system.archiver.inc b/modules/system/system.archiver.inc
index 9972bfc22..cd9c9f48c 100644
--- a/modules/system/system.archiver.inc
+++ b/modules/system/system.archiver.inc
@@ -28,7 +28,7 @@ class ArchiverTar implements ArchiverInterface {
return $this;
}
- public function remove($path) {
+ public function remove($file_path) {
// @todo Archive_Tar doesn't have a remove operation
// so we'll have to simulate it somehow, probably by
// creating a new archive with everything but the removed
@@ -99,7 +99,7 @@ class ArchiverZip implements ArchiverInterface {
return $this;
}
- public function remove($path) {
+ public function remove($file_path) {
$this->zip->deleteName($file_path);
return $this;