--- class.t3lib_db.php.orig Sun Jan 30 23:05:47 2005 +++ class.t3lib_db.php Mon Apr 25 17:51:17 2005 @@ -350,7 +350,7 @@ )'; // Return query: - if ($this->debugOutput) $this->debug_lastBuiltQuery = $query; + $this->debug_lastBuiltQuery = $query; return $query; } } @@ -387,7 +387,7 @@ '.$where : ''); // Return query: - if ($this->debugOutput) $this->debug_lastBuiltQuery = $query; + $this->debug_lastBuiltQuery = $query; return $query; } } else { @@ -413,7 +413,7 @@ WHERE '.$where : ''); - if ($this->debugOutput) $this->debug_lastBuiltQuery = $query; + $this->debug_lastBuiltQuery = $query; return $query; } else { die('TYPO3 Fatal Error: "Where" clause argument for DELETE query was not a string in $this->DELETEquery() !'); @@ -460,7 +460,7 @@ } // Return query: - if ($this->debugOutput) $this->debug_lastBuiltQuery = $query; + $this->debug_lastBuiltQuery = $query; return $query; }