egroupware/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']);
?>