MDL-48580 report_log: fix site errors dropdown

Thanks Renaat Debleu for pointing this bug and share a solution.
This commit is contained in:
Simey Lameze 2014-12-16 12:37:28 +08:00
parent 8f06fffbe1
commit 64a5ede261

View File

@ -188,7 +188,7 @@ class report_log_renderable implements renderable {
// For site just return site errors option.
$sitecontext = context_system::instance();
if (empty($this->course) && has_capability('report/log:view', $sitecontext)) {
if ($this->course->id == SITEID && has_capability('report/log:view', $sitecontext)) {
$activities["site_errors"] = get_string("siteerrors");
return $activities;
}