]> git.mxchange.org Git - friendica.git/blob - include/directory.php
Merge branch 'master' of github.com:fabrixxm/friendika
[friendica.git] / include / directory.php
1 <?php
2 require_once("boot.php");
3
4 function directory_run($argv, $argc){
5   global $a, $db;
6
7   if(is_null($a)){
8     $a = new App;
9   }
10   
11   if(is_null($db)){
12     @include(".htconfig.php");
13     require_once("dba.php");
14     $db = new dba($db_host, $db_user, $db_pass, $db_data);
15     unset($db_host, $db_user, $db_pass, $db_data);
16   };
17
18         if($argc != 2)
19                 return;
20
21         load_config('system');
22
23         $a->set_baseurl(get_config('system','url'));
24
25         $dir = get_config('system','directory_submit_url');
26
27         if(! strlen($dir))
28                 return;
29
30         fetch_url($dir . '?url=' . bin2hex($argv[1]));
31
32         return;
33 }
34
35 if (array_search(__file__,get_included_files())===0){
36   directory_run($argv,$argc);
37   killme();
38 }