Project

General

Profile

Feature #24015 » 16345-v2.diff

Administrator Admin, 2010-11-11 22:36

View differences:

typo3/sysext/setup/mod/index.php (Arbeitskopie)
* @return string HTML output.
*/
protected function getCSH($str, $label) {
if (!t3lib_div::inList('language,simuser', $str)) {
$str = 'option_' . $str;
$context = '_MOD_user_setup';
$field = $str;
$strParts = explode(':', $str);
if (count($strParts) > 1) {
// Setting comes from another extension
$context = $strParts[0];
$field = $strParts[1];
} else if (!t3lib_div::inList('language,simuser', $str)) {
$field = 'option_' . $str;
}
return t3lib_BEfunc::wrapInHelp('_MOD_user_setup', $str, $label);
return t3lib_BEfunc::wrapInHelp($context, $field, $label);
}
/**
(2-2/2)