From: moodler Date: Tue, 16 Dec 2003 05:31:52 +0000 (+0000) Subject: Fixed a typo (not using $CFG->admin) X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=003296c476461207f6ee9c5fdb29f844f665b3cd;p=moodle.git Fixed a typo (not using $CFG->admin) --- diff --git a/user/edit.php b/user/edit.php index 7cc890674e..c65a7b7234 100644 --- a/user/edit.php +++ b/user/edit.php @@ -98,7 +98,7 @@ } redirect("$CFG->wwwroot/user/view.php?id=$user->id&course=$course->id", get_string("changessaved")); } else { - redirect("$CFG->wwwroot/admin/user.php", get_string("changessaved")); + redirect("$CFG->wwwroot/$CFG->admin/user.php", get_string("changessaved")); } } else { error("Could not update the user record ($user->id)");