From 80652f67a44ce31ac1b54f6e0c39f6f77796fdec Mon Sep 17 00:00:00 2001 From: Marco Dickert Date: Thu, 17 Nov 2016 17:13:32 +0100 Subject: [PATCH] misterunknown: fixed problem with the constructor --- src/zip_file.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/zip_file.php b/src/zip_file.php index f716fbe..914311b 100644 --- a/src/zip_file.php +++ b/src/zip_file.php @@ -325,7 +325,7 @@ class archive { } class zip_file extends archive { function __construct($name) { - $this->archive($name); + parent::__construct($name); $this->options['type'] = "zip"; } function create_zip() {