mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-16 21:13:16 +01:00
11 lines
264 B
PHP
Executable File
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']);
|
|
?>
|