Project

General

Profile

Bug #23999 » 16323.diff

Administrator Admin, 2010-11-09 22:56

View differences:

typo3/class.browse_links.php (working copy)
// Look up tt_content elements from the expanded page:
$res = $GLOBALS['TYPO3_DB']->exec_SELECTquery(
'uid,header,hidden,starttime,endtime,fe_group,CType,colpos,bodytext',
'uid,header,hidden,starttime,endtime,fe_group,CType,colpos,bodytext,sys_language_uid',
'tt_content',
'pid='.intval($expPageId).
t3lib_BEfunc::deleteClause('tt_content').
......
while($row = $GLOBALS['TYPO3_DB']->sql_fetch_assoc($res)) {
$c++;
$icon = t3lib_iconWorks::getSpriteIconForRecord('tt_content', $row);
$localizationMarkerClass = $row['sys_language_uid'] != '0' ? ' localization' : '';
if ($this->curUrlInfo['act']=='page' && $this->curUrlInfo['cElement']==$row['uid']) {
$arrCol='<img'.t3lib_iconWorks::skinImg($BACK_PATH,'gfx/blinkarrow_left.gif','width="5" height="9"').' class="c-blinkArrowL" alt="" />';
} else {
......
// Putting list element HTML together:
$out.='<img'.t3lib_iconWorks::skinImg($BACK_PATH,'gfx/ol/join'.($c==$cc?'bottom':'').'.gif','width="18" height="16"').' alt="" />'.
$arrCol.
'<a href="#" onclick="return link_typo3Page(\''.$expPageId.'\',\'#'.$row['uid'].'\');">'.
'<a href="#" title="id=' . $row['uid'] . '" class="' . $localizationMarkerClass . '" onclick="return link_typo3Page(\'' . $expPageId . '\',\'#' . $row['uid'] . '\');">' .
$icon.
t3lib_BEfunc::getRecordTitle('tt_content', $row, TRUE) .
'</a><br />';
typo3/sysext/t3skin/stylesheets/structure/element_rte.css (working copy)
padding: 0 0 0 5px;
}
table#typo3-linkPages a.localization {
padding: 0 0 0 12px;
}
table#typo3-linkPages,
table#typo3-linkFiles,
table#typo3-EBrecords,
(1-1/9)