+2010-07-21 Ingo Renner <ingo@typo3.org>
+
+ * Fixed bug #15179: Tree depth retrieval inconsistently limited to 20 levels int3lib_pageSelect
+
2010-07-21 Steffen Kamper <steffen@typo3.org>
* Fixed bug #15067: Background Image in Element Browser is repeated, but should not be! (Thanks to Steffen Gebert)
* Fixed bug #14858: imageLinkWrap.JSwindow triggers XSS warning or Fails (thanks to Jigal van Hemert)
* Added feature #13797: new TS config option to disable the "Show secondary options" checkbox (thanks to Jörg Klein)
* Added feature #2049: Add the possibility to use "Ellipse" in Gifbuilder (thanks to Kjeld Schumacher)
-
+
2010-07-16 Xavier Perseguers <typo3@perseguers.ch>
* Fixed bug #14818: t3lib_db->listQuery() performance (thanks to Caspar Stuebs)
2010-07-11 Steffen Kamper <info@sk-typo3.de>
- * Fixed bug #14970: ts browser condition results in error if browser is unknown (Thanks to Caspar Stuebs)
+ * Fixed bug #14970: ts browser condition results in error if browser is unknown (Thanks to Caspar Stuebs)
* Fixed bug #15004: Cleanup cms autoload classes
2010-07-11 Susanne Moog <typo3@susanne-moog.de>
$loopCheck = 0;
$theRowArray = Array();
- while ($uid!=0 && $loopCheck<20) { // Max 20 levels in the page tree.
+ while ($uid != 0 && $loopCheck < 99) { // Max 99 levels in the page tree.
$res = $GLOBALS['TYPO3_DB']->exec_SELECTquery($selFields, 'pages', 'uid='.intval($uid).' AND pages.deleted=0 AND pages.doktype!=255');
$row = $GLOBALS['TYPO3_DB']->sql_fetch_assoc($res);
$GLOBALS['TYPO3_DB']->sql_free_result($res);