Feature #24015 » 16345-v2.diff
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);
|
||
}
|
||
|
||
/**
|
- « Previous
- 1
- 2
- Next »