diff --git a/typo3/sysext/version/cm1/index.php b/typo3/sysext/version/cm1/index.php index 26c686e..16b6b4f 100755 --- a/typo3/sysext/version/cm1/index.php +++ b/typo3/sysext/version/cm1/index.php @@ -356,9 +356,12 @@ class tx_version_cm1 extends t3lib_SCbase { } // 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) ); }