See issue 1218: generate $argv and $argc from $_SERVER if it wasn't defined.

This commit is contained in:
Michael Vogel 2015-01-02 00:01:17 +01:00
parent 8c8ffdf999
commit 38a45d325f
3 changed files with 15 additions and 6 deletions

View file

@ -8,7 +8,7 @@ function dbupdate_run(&$argv, &$argc) {
if(is_null($a)){
$a = new App;
}
if(is_null($db)) {
@include(".htconfig.php");
require_once("include/dba.php");
@ -26,4 +26,3 @@ if (array_search(__file__,get_included_files())===0){
dbupdate_run($argv,$argc);
killme();
}