From fdc736686acce1c3ca599badcc74c9ba73044092 Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Sun, 22 Nov 2009 08:23:14 +0000 Subject: [PATCH] MINOR Syntax git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@92939 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- code/LeftAndMain.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/LeftAndMain.php b/code/LeftAndMain.php index 6ac7cbe2..2e40716d 100644 --- a/code/LeftAndMain.php +++ b/code/LeftAndMain.php @@ -493,7 +493,7 @@ class LeftAndMain extends Controller { "" '; - $siteTree = $obj->getChildrenAsUL( + $html = $obj->getChildrenAsUL( "", $titleEval, $this, @@ -510,11 +510,11 @@ class LeftAndMain extends Controller { if($this->hasMethod('getCMSTreeTitle')) $treeTitle = $this->getCMSTreeTitle(); else $treeTitle = _t('LeftAndMain.SITECONTENTLEFT',"Site Content",PR_HIGH,'Root node on left'); - $siteTree = ""; + $html = ""; } - return $siteTree; + return $html; } /**