Project

General

Profile

Bug #24824 ยป 17327.diff

Administrator Admin, 2011-01-26 12:07

View differences:

class.ux_t3lib_db.php (working copy)
// Compiling query:
$compiledQuery = $this->SQLparser->compileSQL($this->lastParsedAndMappedQueryArray);
//if ($this->lastParsedAndMappedQueryArray['type'] == 'INSERT') {
// return mysql_query($compiledQuery, $this->link);
//}
return mysql_query($compiledQuery, $this->link);
if ($this->lastParsedAndMappedQueryArray['type'] == 'INSERT') {
return mysql_query($compiledQuery, $this->link);
}
return mysql_query(is_array($compiledQuery) ? $compiledQuery[0] : $compiledQuery, $this->link);
break;
case 'adodb':
// Compiling query:
    (1-1/1)