mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
BUG: Page type names not translated in pages overview search form
Fixed by using the singularname translation for the class as values in the page types array used for the page types dropdown field.
This commit is contained in:
parent
4ad2b25679
commit
2934423ebc
@ -247,8 +247,11 @@ class CMSMain extends LeftAndMain implements CurrentPageIdentifier, PermissionPr
|
||||
|
||||
function SearchForm() {
|
||||
// get all page types in a dropdown-compatible format
|
||||
$pageTypes = SiteTree::page_type_classes();
|
||||
$pageTypes = array_combine($pageTypes, $pageTypes);
|
||||
$pageTypeClasses = SiteTree::page_type_classes();
|
||||
$pageTypes = array();
|
||||
foreach ($pageTypeClasses as $pageTypeClass) {
|
||||
$pageTypes[$pageTypeClass] = _t($pageTypeClass.'.SINGULARNAME', $pageTypeClass);
|
||||
}
|
||||
asort($pageTypes);
|
||||
|
||||
// get all filter instances
|
||||
|
Loading…
Reference in New Issue
Block a user