From 2b7314c5742176edf5ed1de1bfc660ee1d43f4f8 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Mon, 28 Jan 2008 16:18:19 +0000 Subject: [PATCH] - comment out URL login stuff for now svn path=/trunk/boinc/; revision=14627 --- html/inc/util.inc | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/html/inc/util.inc b/html/inc/util.inc index 46542a054e..770335b112 100644 --- a/html/inc/util.inc +++ b/html/inc/util.inc @@ -92,10 +92,11 @@ function get_logged_in_user($must_be_logged_in=true) { if (!$authenticator) { if (isset($_COOKIE['auth'])) $authenticator = $_COOKIE['auth']; } - if (!$authenticator) { - $authenticator = get_str('login_auth', true); - if ($authenticator) $login_request = true; - } +// leave this out for now +// if (!$authenticator) { +// $authenticator = get_str('login_auth', true); +// if ($authenticator) $login_request = true; +// } $authenticator = process_user_text($authenticator); if ($authenticator) { $g_logged_in_user = BoincUser::lookup("authenticator='$authenticator'");