VPN-Management-GUI 2.0.3 porting start

This commit is contained in:
2012-07-16 19:30:19 +00:00
commit d3b0130655
545 changed files with 19128 additions and 0 deletions

10
Modules/Downloads/getdown.php Executable file
View File

@@ -0,0 +1,10 @@
<?php
ob_start(); // prevent unwanted output
require $_SERVER["DOCUMENT_ROOT"]."/Site/mysql.php";
require $_SERVER["DOCUMENT_ROOT"]."/Modules/Downloads/include/init.php";
require $_SERVER["DOCUMENT_ROOT"]."/Modules/Downloads/include/fun_down.php";
ob_end_clean(); // get rid of cached unwanted output
download_item($GLOBALS["dir"], $GLOBALS["item"]);
ob_start(false); // prevent unwanted output
exit;
?>