]> git.mjollnir.org Git - moodle.git/commitdiff
removed TABS and changed wording (your -> this)
authormartin <martin>
Thu, 1 Aug 2002 06:16:43 +0000 (06:16 +0000)
committermartin <martin>
Thu, 1 Aug 2002 06:16:43 +0000 (06:16 +0000)
course/loginas.php

index cf3dd59f8b2f81a604a6f3a45c8f72ef6231c911..957483a10f18167bf79c8a7afbb947e2608f8e76 100644 (file)
@@ -1,7 +1,7 @@
 <?PHP // $Id$
 
-       require("../config.php");
-       require("lib.php");
+    require("../config.php");
+    require("lib.php");
 
     require_variable($id);     // course id
     require_variable($user);   // login as this user
         error("Course ID was incorrect");
     }
 
-       require_login($course->id);
+    require_login($course->id);
 
     if (!isteacher($course->id)) {
         error("Only teachers can use this page!");
     }
 
     if (!isstudent($course->id, $user)) {
-        error("This student is not in your course!");
+        error("This student is not in this course!");
     }
 
     // Login as this student and return to course home page.