+2004-09-13 Kasper Skårhøj,,, <kasper@typo3.com>
+
+ * Changed little more in uniqueList, among others that a fixed number of paramters are supported only now!
+
2004-09-13 Michael Stucki <mundaun@gmx.ch>
* Fixed bug in t3lib_div::uniqueList that was caused when t3lib_div::uniqueArray was replaced with array_unique. Obviously array_unique doesn't remove empty values from the array but t3lib_div::uniqueArray did! Please take care of this if you still use this deprecated function in your extension!
}
// Processing filemounts
- $this->dataLists['filemount_list']=t3lib_div::uniqueList($this->dataLists['filemount_list']);
+ $this->dataLists['filemount_list'] = t3lib_div::uniqueList($this->dataLists['filemount_list']);
if ($this->dataLists['filemount_list']) {
$res = $GLOBALS['TYPO3_DB']->exec_SELECTquery('*', 'sys_filemounts', 'NOT deleted AND NOT hidden AND pid=0 AND uid IN ('.$this->dataLists['filemount_list'].')');
while ($row = $GLOBALS['TYPO3_DB']->sql_fetch_assoc($res)) {