From 7d00afce59a1a5f70f4eccfc0eaaae78395650ab Mon Sep 17 00:00:00 2001 From: Sam Minnee Date: Sat, 16 May 2009 06:03:22 +0000 Subject: [PATCH] API CHANGE #4036 ajshort: Add the ability to set the keys of ModelAdmin::$managed_models to alternate titles for the tabs. git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@76999 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- code/ModelAdmin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/ModelAdmin.php b/code/ModelAdmin.php index c206a77d..109728da 100644 --- a/code/ModelAdmin.php +++ b/code/ModelAdmin.php @@ -193,7 +193,7 @@ abstract class ModelAdmin extends LeftAndMain { foreach($models as $title => $class) { $forms->push(new ArrayData(array ( - 'Title' => (is_string($title) ? $title : singleton($modelClass)->singular_name()), + 'Title' => (is_string($title) ? $title : singleton($class)->singular_name()), 'ClassName' => $class, 'Content' => $this->$class()->getModelSidebar() )));