Skip to content

Commit 52dee4e

Browse files
author
lolli
committed
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
1 parent 71d1798 commit 52dee4e

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

ChangeLog

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2010-07-14 Christian Kuhn <[email protected]>
2+
3+
* Fixed bug #14911: Validation errors in list view (Thanks to Georg Ringer)
4+
15
2010-07-14 Dmitry Dulepov <[email protected]>
26

37
* Fixed bug #6208: zlib must be compiled in to make an extension lookup

typo3/class.db_list_extra.inc

+2-2
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@ class localRecordList extends recordList {
499499
// Render collapse button if in multi table mode
500500
$collapseIcon = '';
501501
if (!$this->table) {
502-
$collapseIcon = '<a href="' . htmlspecialchars($this->listURL()) . '&collapse[' . $table . ']=' . ($tableCollapsed ? '0' : '1') . '" title="' . ($tableCollapsed ? $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.php:labels.expandTable', TRUE) : $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.php:labels.collapseTable', TRUE)) . '">' .
502+
$collapseIcon = '<a href="' . htmlspecialchars($this->listURL() . '&collapse[' . $table . ']=' . ($tableCollapsed ? '0' : '1')) . '" title="' . ($tableCollapsed ? $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.php:labels.expandTable', TRUE) : $GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.php:labels.collapseTable', TRUE)) . '">' .
503503
($tableCollapsed ? t3lib_iconWorks::getSpriteIcon('actions-view-list-expand', array('class' => 'collapseIcon')) : t3lib_iconWorks::getSpriteIcon('actions-view-list-collapse', array('class' => 'collapseIcon'))) .
504504
'</a>';
505505
}
@@ -1213,7 +1213,7 @@ class localRecordList extends recordList {
12131213
$versionIcon = count($vers) - 1;
12141214
}
12151215

1216-
$cells['version']='<a href="'.htmlspecialchars($this->backPath.t3lib_extMgm::extRelPath('version')).'cm1/index.php?table='.rawurlencode($table).'&uid='.rawurlencode($row['uid']).'" title="'.$LANG->getLL('displayVersions', TRUE) . '">' .
1216+
$cells['version'] = '<a href="' . htmlspecialchars($this->backPath . t3lib_extMgm::extRelPath('version') . 'cm1/index.php?table=' . rawurlencode($table) . '&uid=' . rawurlencode($row['uid'])) . '" title="' . $LANG->getLL('displayVersions', TRUE) . '">' .
12171217
t3lib_iconWorks::getSpriteIcon('status-version-' . $versionIcon) .
12181218
'</a>';
12191219
} elseif(!$this->table) {

0 commit comments

Comments
 (0)