From a2e867b092ad272624fdc4a2b4b22bab2b77cec4 Mon Sep 17 00:00:00 2001 From: thepurpleblob Date: Wed, 23 Apr 2008 08:45:29 +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) --- auth/mnet/jump.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/auth/mnet/jump.php b/auth/mnet/jump.php index f05d7152f..7de80c870 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')) { error('mnet is disabled'); } -- 2.11.4.GIT