BUGFIX Don't show subsites drop down in ReportAdmin, as filtering works differently here (AIR-49)

This commit is contained in:
Ingo Schommer 2011-09-09 14:12:59 +02:00
parent ac2704b968
commit 1d1811b308

View File

@ -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();