little bit of code cleanup
[gwvp-mini.git] / www / index.php
index 1482ceb..acb44a1 100644 (file)
@@ -3,9 +3,9 @@ error_log("INCALLSTART ".print_r($_COOKIE, true)." -------------------- ".print_
 $WEB_ROOT_FS = realpath(dirname(__FILE__));\r
 $BASE_URL = dirname($_SERVER["PHP_SELF"]);\r
 \r
-global $WEB_ROOT_FS, $BASE_URL, $data_directory, $db_type, $db_name, $db_username, $db_password, $IS_WEB_REQUEST;
+global $WEB_ROOT_FS, $BASE_URL, $data_directory, $db_type, $db_name, $db_username, $db_password, $IS_WEB_REQUEST, $cmd_line_tool;
 
-$IS_WEB_REQUEST = false;\r
+$IS_WEB_REQUEST = true;\r
 
 if(file_exists("./config.php")) require_once("./config.php");
 else if(file_exists("/etc/gwvpmini/config.php")) require_once("/etc/gwvpmini/config.php");
@@ -20,6 +20,8 @@ if(isset($noconfig)) {
        return;
 }
 
+error_log("CMDLINETOOL: ".$cmd_line_tool);
+
 // need to make this db agnostic
 if(!gwvpmini_DBExists($db_name)) {
        if(!is_dir("$data_directory/repos")) mkdir("$data_directory/repos");