aboutsummaryrefslogtreecommitdiffstats
path: root/include/directory.php
diff options
context:
space:
mode:
authorFabio Comuni <fabrix.xm@gmail.com>2011-01-28 14:04:18 +0100
committerFabio Comuni <fabrix.xm@gmail.com>2011-01-28 14:04:18 +0100
commitef33ca67501559fba72281f0d1f32fc6ef43704d (patch)
tree0b2de9873bc07cad0265241d0277a0f661898781 /include/directory.php
parent517d6812dabfbb93b34045048e8894fb54d220a7 (diff)
downloadvolse-hubzilla-ef33ca67501559fba72281f0d1f32fc6ef43704d.tar.gz
volse-hubzilla-ef33ca67501559fba72281f0d1f32fc6ef43704d.tar.bz2
volse-hubzilla-ef33ca67501559fba72281f0d1f32fc6ef43704d.zip
modded scripts to be runned in cli so they can be included and executed in main program
Diffstat (limited to 'include/directory.php')
-rw-r--r--include/directory.php32
1 files changed, 21 insertions, 11 deletions
diff --git a/include/directory.php b/include/directory.php
index 4fdcf4928..2c9daa5ea 100644
--- a/include/directory.php
+++ b/include/directory.php
@@ -1,14 +1,19 @@
<?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);
-
+require_once("boot.php");
+
+function directory_run($argv, $argc){
+ global $a, $db;
+
+ if(is_null($a)){
+ $a = new App;
+ }
+
+ if(is_null($db)){
+ @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)
return;
@@ -20,9 +25,14 @@
$dir = get_config('system','directory_submit_url');
if(! strlen($dir))
- exit;
+ return;
fetch_url($dir . '?url=' . bin2hex($argv[1]));
return;
+}
+if (array_search(__file__,get_included_files())===0){
+ directory_run($argv,$argc);
+ killme();
+}