From 3e080d75ef0dbb96a1396ccdd33371ae42107a26 Mon Sep 17 00:00:00 2001 From: nicolasconnault Date: Tue, 27 Feb 2007 05:09:15 +0000 Subject: [PATCH] Fixed 2 typos identified by Dan (guset instead of guest). MDL-8676 --- course/report/participation/index.php | 4 ++-- course/report/participation/mod.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/course/report/participation/index.php b/course/report/participation/index.php index b72c770eea..818ac25161 100644 --- a/course/report/participation/index.php +++ b/course/report/participation/index.php @@ -2,7 +2,7 @@ require_once('../../../config.php'); require_once($CFG->libdir.'/statslib.php'); - + define('DEFAULT_PAGE_SIZE', 20); define('SHOW_ALL_PAGE_SIZE', 5000); @@ -114,7 +114,7 @@ } } $guestrole = get_guest_role(); - if (empty($useroptions[$gusetrole->id])) { + if (empty($useroptions[$guestrole->id])) { $useroptions[$guestrole->id] = $guestrole->name; } $actionoptions = array('' => $strallactions, diff --git a/course/report/participation/mod.php b/course/report/participation/mod.php index 9e15b80f3d..04171c2692 100644 --- a/course/report/participation/mod.php +++ b/course/report/participation/mod.php @@ -66,7 +66,7 @@ } } $guestrole = get_guest_role(); - if (empty($useroptions[$gusetrole->id])) { + if (empty($useroptions[$guestrole->id])) { $useroptions[$guestrole->id] = $guestrole->name; } $actionoptions = array('' => $strallactions, -- 2.39.5