Skip to content
Snippets Groups Projects
Commit 21b0077b authored by Hahn Axel (hahn)'s avatar Hahn Axel (hahn)
Browse files

Merge branch 'task-1538-fgix-multiple-hosts' into 'master'

Task 1538 fgix multiple hosts

See merge request !49
parents 1f01a834 4d04fe56
No related branches found
No related tags found
No related merge requests found
...@@ -148,6 +148,9 @@ class valuestore { ...@@ -148,6 +148,9 @@ class valuestore {
} else { } else {
$result = $this->_oDB->query($sSql); $result = $this->_oDB->query($sSql);
} }
if(!$result){
$this->log('<pre>'.print_r($this->_oDB->errorInfo()).'</pre>', 'error');
}
$this->log("end query - ".$sSql); $this->log("end query - ".$sSql);
return $result; return $result;
} }
...@@ -459,11 +462,10 @@ class valuestore { ...@@ -459,11 +462,10 @@ class valuestore {
. ($this->sPhase ? "AND phase='" . $this->sPhase . "' " : "") . ($this->sPhase ? "AND phase='" . $this->sPhase . "' " : "")
. ($this->sPlace ? "AND place='" . $this->sPlace . "' " : "") . ($this->sPlace ? "AND place='" . $this->sPlace . "' " : "")
. ($this->sHost ? "AND host='" . $this->sHost . "' " : "") . ($this->sHost ? "AND host='" . $this->sHost . "' " : "")
. ($sVariable ? "AND variable='" . $sVariable . "' " : "")
; ;
// die("$iTtl ... $sSql ... ABORT"); // die("$iTtl ... $sSql ... ABORT");
$this->_makeQuery($sSql); $this->_makeQuery($sSql);
$this->_makeQuery("vaccum;"); $this->_makeQuery("vacuum;");
return true; return true;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment