From: moodler Date: Tue, 6 Jan 2004 02:35:27 +0000 (+0000) Subject: Add a link to the upload user script in the admin menus X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=f99035c299d0a93c1024b50eb1042ae6d5b62cef;p=moodle.git Add a link to the upload user script in the admin menus --- diff --git a/admin/index.php b/admin/index.php index f97ee69fa9..997cabb1dc 100644 --- a/admin/index.php +++ b/admin/index.php @@ -374,6 +374,9 @@ $userdata .= " wwwroot/$CFG->admin/user.php?newuser=true\">". get_string("addnewuser")." - ". get_string("adminhelpaddnewuser")."
"; + $userdata .= " wwwroot/$CFG->admin/uploaduser.php\">". + get_string("uploadusers")." - ". + get_string("adminhelpuploadusers")."
"; } $userdata .= " ".get_string("edituser")." - ". get_string("adminhelpedituser")."
"; diff --git a/admin/users.php b/admin/users.php index b0c3791e2b..f129db59c7 100644 --- a/admin/users.php +++ b/admin/users.php @@ -28,6 +28,8 @@ if ($CFG->auth == "email" || $CFG->auth == "none" || $CFG->auth == "manual"){ $table->data[] = array("wwwroot/$CFG->admin/user.php?newuser=true\">".get_string("addnewuser")."", get_string("adminhelpaddnewuser")); + $table->data[] = array("wwwroot/$CFG->admin/uploaduser.php\">".get_string("uploadusers")."", + get_string("adminhelpuploadusers")); } $table->data[] = array("".get_string("edituser")."", get_string("adminhelpedituser"));