From: thepurpleblob Date: Wed, 23 Apr 2008 08:47:27 +0000 (+0000) Subject: MDL-14461: X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=e47878d8703b2111893e4f6fad9af620328630fb;p=moodle.git MDL-14461: The user must be (effectively) be logged in to use this function. Adding the logged in check means they will be asked if they are not (like everywhere else). Merged from STABLE19 --- diff --git a/auth/mnet/jump.php b/auth/mnet/jump.php index 0058e5caaf..2d03a6ba48 100644 --- a/auth/mnet/jump.php +++ b/auth/mnet/jump.php @@ -14,6 +14,8 @@ require_once dirname(dirname(dirname(__FILE__))) . '/config.php'; +require_login(); + if (!is_enabled_auth('mnet')) { print_error('mnet is disabled'); }