From b76083ee64d894d9cce0395b407b2488436651d6 Mon Sep 17 00:00:00 2001 From: Sam Minnee Date: Sat, 26 Apr 2008 06:40:00 +0000 Subject: [PATCH] Merged revisions 52395 via svnmerge from http://svn.silverstripe.com/open/modules/cms/branches/2.2.2 ........ r52395 | sminnee | 2008-04-09 18:07:57 +1200 (Wed, 09 Apr 2008) | 1 line #2388 - Fixed CMS search. ........ git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@53501 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- code/CMSMain.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/CMSMain.php b/code/CMSMain.php index a4d0000c..e4614392 100644 --- a/code/CMSMain.php +++ b/code/CMSMain.php @@ -31,6 +31,7 @@ class CMSMain extends LeftAndMain implements CurrentPageIdentifier, PermissionPr 'dialog', 'duplicate', 'duplicatewithchildren', + 'filtersitetree', 'getpagecount', 'getpagemembers', 'getversion', @@ -45,7 +46,7 @@ class CMSMain extends LeftAndMain implements CurrentPageIdentifier, PermissionPr 'tasklist', 'unpublish', 'versions', - 'waitingon', + 'waitingon', ); /** @@ -141,7 +142,7 @@ class CMSMain extends LeftAndMain implements CurrentPageIdentifier, PermissionPr /** * Returns a filtered Site Tree */ - public function filterSiteTree() { + public function filtersitetree() { $className = 'SiteTree'; $rootID = null; $obj = $rootID ? $this->getRecord($rootID) : singleton($className);