Feature #19958 » 0010333-subcats_in_conf_templates.patch
t3lib/class.t3lib_tsparser_ext.php (Arbeitskopie) | ||
---|---|---|
// label
|
||
$editableComments[$const]['label'] = trim($keyValPair[1]);
|
||
break;
|
||
case 'customsubcat':
|
||
// custom subCategory label
|
||
$customSubCat = explode('=',$keyValPair[1],2);
|
||
if (trim($customSubCat[0])) {
|
||
$this->subCategories[$customSubCat[0]][0] = $GLOBALS['LANG']->sL($customSubCat[1]);
|
||
}
|
||
break;
|
||
}
|
||
}
|
||
}
|