From: skodak Date: Thu, 15 Jan 2009 22:14:40 +0000 (+0000) Subject: fixed whitespace X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=099f393f83a76991ac2a1e1e5109703f3e849b3a;p=moodle.git fixed whitespace --- diff --git a/login/index.php b/login/index.php index 0a67aa8938..ab7295c77e 100644 --- a/login/index.php +++ b/login/index.php @@ -3,7 +3,7 @@ require_once("../config.php"); - // check if major upgrade needed - also present in /index.php +/// check if major upgrade needed - also present in /index.php if ((int)$CFG->version < 2009011400) { //1.9 or older @require_logout(); redirect("$CFG->wwwroot/$CFG->admin/"); @@ -24,18 +24,18 @@ $session_has_timed_out = false; } -// auth plugins may override these - SSO anyone? -$frm = false; -$user = false; +/// auth plugins may override these - SSO anyone? + $frm = false; + $user = false; -$authsequence = get_enabled_auth_plugins(true); // auths, in sequence -foreach($authsequence as $authname) { - $authplugin = get_auth_plugin($authname); - $authplugin->loginpage_hook(); -} + $authsequence = get_enabled_auth_plugins(true); // auths, in sequence + foreach($authsequence as $authname) { + $authplugin = get_auth_plugin($authname); + $authplugin->loginpage_hook(); + } //HTTPS is potentially required in this page -httpsrequired(); + httpsrequired(); /// Define variables used in page if (!$site = get_site()) {