Index: t3lib/class.t3lib_tsparser_ext.php =================================================================== --- t3lib/class.t3lib_tsparser_ext.php (revision 5100) +++ t3lib/class.t3lib_tsparser_ext.php (working copy) @@ -859,6 +859,14 @@ // label $editableComments[$const]['label'] = trim($keyValPair[1]); break; + case 'customsubcategory': + // custom subCategory label + $customSubcategory = explode('=',$keyValPair[1],2); + if (trim($customSubcategory[0])) { + $subCategoryKey = strtolower($customSubcategory[0]); + $this->subCategories[$subCategoryKey][0] = $GLOBALS['LANG']->sL($customSubcategory[1]); + } + break; } } }