diff options
author | Mario Vavti <mario@mariovavti.com> | 2017-05-30 15:15:00 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-05-30 15:15:00 +0200 |
commit | 3f658cc2ea46eb44d517b2b8c84ef6d13d9544f5 (patch) | |
tree | c2e75e9544477921dd72814884efe31d5b45f52f | |
parent | 11cecea597441d4bd688c3fa73e85b91a01ad173 (diff) | |
download | volse-hubzilla-3f658cc2ea46eb44d517b2b8c84ef6d13d9544f5.tar.gz volse-hubzilla-3f658cc2ea46eb44d517b2b8c84ef6d13d9544f5.tar.bz2 volse-hubzilla-3f658cc2ea46eb44d517b2b8c84ef6d13d9544f5.zip |
fix issue #790 - zip->open returned error 19 (not a valid zip archive). in case there are further issues we should probably also put a ob_end_clean() right before readfile()
-rw-r--r-- | Zotlabs/Module/Webpages.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Zotlabs/Module/Webpages.php b/Zotlabs/Module/Webpages.php index effe92614..5e3091dfa 100644 --- a/Zotlabs/Module/Webpages.php +++ b/Zotlabs/Module/Webpages.php @@ -694,7 +694,8 @@ class Webpages extends \Zotlabs\Web\Controller { } rrmdir($zip_folderpath); rrmdir($tmp_folderpath); // delete temporary files - + killme(); + break; default : break; |