Project

General

Profile

Bug #24886 ยป 17399.diff

Administrator Admin, 2011-02-02 20:39

View differences:

typo3/sysext/dbal/class.ux_t3lib_db.php (Arbeitskopie)
// 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 (in_array($this->lastParsedAndMappedQueryArray['type'], array('INSERT', 'DROPTABLE'))) {
return mysql_query($compiledQuery, $this->link);
}
return mysql_query($compiledQuery[0], $this->link);
break;
case 'adodb':
// Compiling query:
    (1-1/1)