From 1d1811b3087d69c5d512699c3d5e8e463f5bc40a Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Fri, 9 Sep 2011 14:12:59 +0200 Subject: [PATCH] BUGFIX Don't show subsites drop down in ReportAdmin, as filtering works differently here (AIR-49) --- code/LeftAndMainSubsites.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/LeftAndMainSubsites.php b/code/LeftAndMainSubsites.php index 19e084a..f1fb3ff 100644 --- a/code/LeftAndMainSubsites.php +++ b/code/LeftAndMainSubsites.php @@ -62,6 +62,10 @@ class LeftAndMainSubsites extends Extension { } } + // Don't show subsite list in reports section, it doesn't have + // any effect there - subsites are filtered through a custom dropdown there, see SubsiteReportWrapper + if($this->owner instanceof ReportAdmin) return false; + $list = $this->Subsites(); $currentSubsiteID = Subsite::currentSubsiteID();