Roland Haeder
12e4bff880
- removed some empty lines at bottom of files - added new-line character at end of file (as this else may confuse some old editors) - moved JavaScript files out of "include" into own "js" - if you set <basename>, you don't need full URLs in linked JavaScript files and CSS files Signed-off-by: Roland Haeder <roland@mxchange.org>
27 lines
448 B
PHP
27 lines
448 B
PHP
<?php
|
|
|
|
require_once("boot.php");
|
|
|
|
$a = new App;
|
|
|
|
@include(".htconfig.php");
|
|
require_once("dba.php");
|
|
$db = new dba($db_host, $db_user, $db_pass, $db_data);
|
|
unset($db_host, $db_user, $db_pass, $db_data);
|
|
|
|
|
|
if($argc != 2)
|
|
exit;
|
|
|
|
load_config('system');
|
|
|
|
$a->set_baseurl(get_config('system','url'));
|
|
|
|
$dir = get_config('system','directory_submit_url');
|
|
|
|
if(! strlen($dir))
|
|
exit;
|
|
|
|
fetch_url($dir . '?url=' . bin2hex($argv[1]));
|
|
|
|
exit;
|