From: Christian Kuhn Date: Wed, 14 Jul 2010 12:14:23 +0000 (+0000) Subject: Fixed bug #14911: Validation errors in list view (Thanks to Georg Ringer) X-Git-Tag: TYPO3_4-5-0alpha1~224 X-Git-Url: http://git.typo3.org/Packages/TYPO3.CMS.git/commitdiff_plain/4b33796683f2761562fea49d70c96fe439589da3 Fixed bug #14911: Validation errors in list view (Thanks to Georg Ringer) git-svn-id: https://svn.typo3.org/TYPO3v4/Core/trunk@8191 709f56b5-9817-0410-a4d7-c38de5d9e867 --- diff --git a/ChangeLog b/ChangeLog index 18d1cb95e6f3..fc58833ceda3 100755 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2010-07-14 Christian Kuhn + + * Fixed bug #14911: Validation errors in list view (Thanks to Georg Ringer) + 2010-07-14 Dmitry Dulepov * Fixed bug #6208: zlib must be compiled in to make an extension lookup diff --git a/typo3/class.db_list_extra.inc b/typo3/class.db_list_extra.inc index a9e683ca783c..e372185ba507 100644 --- a/typo3/class.db_list_extra.inc +++ b/typo3/class.db_list_extra.inc @@ -499,7 +499,7 @@ class localRecordList extends recordList { // Render collapse button if in multi table mode $collapseIcon = ''; if (!$this->table) { - $collapseIcon = '' . + $collapseIcon = '' . ($tableCollapsed ? t3lib_iconWorks::getSpriteIcon('actions-view-list-expand', array('class' => 'collapseIcon')) : t3lib_iconWorks::getSpriteIcon('actions-view-list-collapse', array('class' => 'collapseIcon'))) . ''; } @@ -1213,7 +1213,7 @@ class localRecordList extends recordList { $versionIcon = count($vers) - 1; } - $cells['version']='' . + $cells['version'] = '' . t3lib_iconWorks::getSpriteIcon('status-version-' . $versionIcon) . ''; } elseif(!$this->table) {