1
0
mirror of https://github.com/misterunknown/ifm.git synced 2025-08-11 10:34:00 +02:00

misterunknown: fixed problem with the constructor

This commit is contained in:
Marco Dickert
2016-11-17 17:13:32 +01:00
parent cb5132b3e2
commit 80652f67a4

View File

@@ -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() {