17 lines
296 B
PHP
17 lines
296 B
PHP
<?php
|
|
require_once('./common.php');
|
|
|
|
require_once('./config_sanddir.php');
|
|
|
|
if (isset($_GET['id']))
|
|
{
|
|
foreach (share_list($GLOBALS['SANDDIR_ROOT_DIR']) as $share)
|
|
{
|
|
if (gen_identifier($share) == $_GET['id'])
|
|
{
|
|
zip_response($share['dir']);
|
|
}
|
|
}
|
|
}
|
|
?>
|