From e1d5fc9db6007a5f1f19b96dfaef79b2c01df070 Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Sun, 2 Nov 2008 22:45:05 +0000 Subject: [PATCH] BUGFIX Fixed menu titles entity references in CMSMain and AssetAdmin git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@65104 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- code/AssetAdmin.php | 2 +- code/CMSMain.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/code/AssetAdmin.php b/code/AssetAdmin.php index 0efa14b7..37149a63 100755 --- a/code/AssetAdmin.php +++ b/code/AssetAdmin.php @@ -46,7 +46,7 @@ class AssetAdmin extends LeftAndMain { ); public function getMenuTitle() { - return _t('LeftAndMain.ASSETS', 'Files & Images', PR_HIGH, 'Menu title'); + return _t('LeftAndMain.FILESIMAGES', 'Files & Images', PR_HIGH, 'Menu title'); } /** diff --git a/code/CMSMain.php b/code/CMSMain.php index d1085723..9dce12be 100644 --- a/code/CMSMain.php +++ b/code/CMSMain.php @@ -103,7 +103,7 @@ class CMSMain extends LeftAndMain implements CurrentPageIdentifier, PermissionPr } public function getMenuTitle() { - return _t('LeftAndMain.CMSMAIN', 'Site Content', PR_HIGH, 'Menu title'); + return _t('LeftAndMain.SITECONTENT', 'Site Content', PR_HIGH, 'Menu title'); } /**