+
+2007-02-15 Martin Kutschker <martin.t.kutschker@blackbox.net>
+
+ * Fix bug #4947: SQL error with DBAL/PostgreSQL when listing or looking up reviewed extensions
+
2007-02-15 Thorsten Kahler <thorsten.kahler@dkd.de>
* Fix: Display description of options in install tool correctly
}
// Fetch count
- $res = $GLOBALS['TYPO3_DB']->exec_SELECTquery('count(*) as cnt', 'cache_extensions', $where, '', $order);
+ $res = $GLOBALS['TYPO3_DB']->exec_SELECTquery('count(*) as cnt', 'cache_extensions', $where);
$row = $GLOBALS['TYPO3_DB']->sql_fetch_assoc($res);
$this->matchingCount = $row['cnt'];
$GLOBALS['TYPO3_DB']->sql_free_result($res);
- $res = $GLOBALS['TYPO3_DB']->exec_SELECTquery('count(*) as cnt', 'cache_extensions', $where, '', $order);
-
$res = $GLOBALS['TYPO3_DB']->exec_SELECTquery('*', 'cache_extensions', $where, '', $order, $offset.','.$limit);
$this->extensionsXML = array();
while ($row = $GLOBALS['TYPO3_DB']->sql_fetch_assoc($res)) {
}
}
}
-?>
\ No newline at end of file
+?>