diff options
-rw-r--r-- | modules/system/system.archiver.inc | 4 |
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; |