Bug #24514 » 16968-I.patch
typo3/sysext/version/cm1/index.php | ||
---|---|---|
}
|
||
// If access to Web>List for user, then link to that module.
|
||
$buttons['record_list'] = t3lib_extMgm::createListViewLink(
|
||
$this->pageinfo['uid'],
|
||
'&returnUrl=' . rawurlencode(t3lib_div::getIndpEnv('REQUEST_URI')),
|
||
$buttons['record_list'] = t3lib_BEfunc::getListViewLink(
|
||
array(
|
||
'id' => $this->pageinfo['uid'],
|
||
'returnUrl' => rawurlencode(t3lib_div::getIndpEnv('REQUEST_URI'))
|
||
),
|
||
'', // empty title
|
||
$GLOBALS['LANG']->sL('LLL:EXT:lang/locallang_core.php:labels.showList', TRUE)
|
||
);
|
||
}
|