projects
/
Packages
/
TYPO3.CMS.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
2006-08-31 Ernesto Baschny <ernst@cron-it.de>
[Packages/TYPO3.CMS.git]
/
t3lib
/
class.t3lib_loaddbgroup.php
diff --git
a/t3lib/class.t3lib_loaddbgroup.php
b/t3lib/class.t3lib_loaddbgroup.php
index
94a48ff
..
c370e66
100755
(executable)
--- a/
t3lib/class.t3lib_loaddbgroup.php
+++ b/
t3lib/class.t3lib_loaddbgroup.php
@@
-310,6
+310,9
@@
class t3lib_loadDBGroup {
if ($GLOBALS['TCA'][$key]['ctrl']['label']) {
$from.= ','.$GLOBALS['TCA'][$key]['ctrl']['label']; // Titel
}
if ($GLOBALS['TCA'][$key]['ctrl']['label']) {
$from.= ','.$GLOBALS['TCA'][$key]['ctrl']['label']; // Titel
}
+ if ($GLOBALS['TCA'][$key]['ctrl']['label_alt']) {
+ $from.= ','.$GLOBALS['TCA'][$key]['ctrl']['label_alt']; // Alternative Title-Fields
+ }
if ($GLOBALS['TCA'][$key]['ctrl']['thumbnail']) {
$from.= ','.$GLOBALS['TCA'][$key]['ctrl']['thumbnail']; // Thumbnail
}
if ($GLOBALS['TCA'][$key]['ctrl']['thumbnail']) {
$from.= ','.$GLOBALS['TCA'][$key]['ctrl']['thumbnail']; // Thumbnail
}
@@
-342,7
+345,7
@@
class t3lib_loadDBGroup {
foreach($this->itemArray as $key => $val) {
$theRow = $this->results[$val['table']][$val['id']];
if ($theRow && is_array($TCA[$val['table']])) {
foreach($this->itemArray as $key => $val) {
$theRow = $this->results[$val['table']][$val['id']];
if ($theRow && is_array($TCA[$val['table']])) {
- $label = t3lib_div::fixed_lgd_cs(strip_tags(
$theRow[$TCA[$val['table']]['ctrl']['label']]
),$titleLen);
+ $label = t3lib_div::fixed_lgd_cs(strip_tags(
t3lib_BEfunc::getRecordTitle($val['table'], $theRow)
),$titleLen);
$label = ($label)?$label:'[...]';
$output[]=str_replace(',','',$val['table'].'_'.$val['id'].'|'.rawurlencode($label));
}
$label = ($label)?$label:'[...]';
$output[]=str_replace(',','',$val['table'].'_'.$val['id'].'|'.rawurlencode($label));
}