1
0
mirror of https://github.com/EGroupware/egroupware.git synced 2025-03-07 11:41:58 +01:00
egroupware_official/phpgwapi/js/dhtmlxtree/libCompiler/zip.php
2010-10-15 10:04:07 +00:00

11 lines
264 B
PHP
Executable File

<?php
error_reporting(E_ALL ^ E_NOTICE ^ E_WARNING );
header("Content-type:application/zip");
header("Content-Disposition: attachment; filename=dhtmlx.zip");
include('./convert.php');
include("./ziplib.php");
echo zipFromLocation($_GET['location']);
?>