]> git.mjollnir.org Git - moodle.git/commitdiff
Fixed 2 typos identified by Dan (guset instead of guest). MDL-8676
authornicolasconnault <nicolasconnault>
Tue, 27 Feb 2007 05:09:15 +0000 (05:09 +0000)
committernicolasconnault <nicolasconnault>
Tue, 27 Feb 2007 05:09:15 +0000 (05:09 +0000)
course/report/participation/index.php
course/report/participation/mod.php

index b72c770eea9ac6026d62d5c1592dc951315a4d51..818ac2516130405af0e156cc9158c5c8be96f484 100644 (file)
@@ -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);
     
         }
     }
     $guestrole = get_guest_role();
-    if (empty($useroptions[$gusetrole->id])) {
+    if (empty($useroptions[$guestrole->id])) {
             $useroptions[$guestrole->id] = $guestrole->name;
     }
     $actionoptions = array('' => $strallactions,
index 9e15b80f3d4deee3a400385fa36231a8f31851ae..04171c269225401db494dbd6fadff8240ebcc844 100644 (file)
@@ -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,