Feature #19958 » bug10133-v3.patch
t3lib/class.t3lib_tsparser_ext.php (working copy) | ||
---|---|---|
// 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;
|
||
}
|
||
}
|
||
}
|
- « Previous
- 1
- 2
- 3
- Next »