Bug #23834 ยป 16120.diff
class.ux_t3lib_db.php (working copy) | ||
---|---|---|
case 'UPDATE':
|
||
$table = $queryParts['TABLE'];
|
||
$fields = array();
|
||
foreach ($components['FIELDS'] as $fN => $fV) {
|
||
foreach ($queryParts['FIELDS'] as $fN => $fV) {
|
||
$fields[$fN] = $fV[0];
|
||
}
|
||
$whereClause = isset($queryParts['WHERE']) ? $this->SQLparser->compileWhereClause($queryParts['WHERE']) : '1=1';
|