Bug #23314 ยป csvexport.diff
t3lib/class.t3lib_befunc.php (working copy) | ||
---|---|---|
*/
|
||
public static function getProcessedValueExtra($table, $fN, $fV, $fixed_lgd_chars = 0, $uid = 0, $forceResult = TRUE) {
|
||
global $TCA;
|
||
$fVnew = self::getProcessedValue($table, $fN, $fV, $fixed_lgd_chars, 0, 0, $uid, $forceResult);
|
||
$fVnew = self::getProcessedValue($table, $fN, $fV, $fixed_lgd_chars, 1, 0, $uid, $forceResult);
|
||
if (!isset($fVnew)) {
|
||
if (is_array($TCA[$table])) {
|
||
if ($fN==$TCA[$table]['ctrl']['tstamp'] || $fN==$TCA[$table]['ctrl']['crdate']) {
|
typo3/class.db_list_extra.inc (working copy) | ||
---|---|---|
} else {
|
||
$tmpProc = t3lib_BEfunc::getProcessedValueExtra($table, $fCol, $row[$fCol], 100, $row['uid']);
|
||
$theData[$fCol] = $this->linkUrlMail(htmlspecialchars($tmpProc), $row[$fCol]);
|
||
$row[$fCol] = $tmpProc;
|
||
if ($this->csvOutput) {
|
||
$row[$fCol] = t3lib_BEfunc::getProcessedValueExtra($table, $fCol, $row[$fCol], 0, $row['uid']);
|
||
}
|
||
}
|
||
}
|
||