From e47878d8703b2111893e4f6fad9af620328630fb Mon Sep 17 00:00:00 2001 From: thepurpleblob Date: Wed, 23 Apr 2008 08:47:27 +0000 Subject: [PATCH] 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 --- auth/mnet/jump.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/auth/mnet/jump.php b/auth/mnet/jump.php index 0058e5caafd..2d03a6ba488 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'); }