From 24d8f4fb7ebf651cd7ebf13e7def8bd2bc1c1969 Mon Sep 17 00:00:00 2001 From: moodler Date: Mon, 1 Aug 2005 08:49:33 +0000 Subject: [PATCH] So that we have the password handy later --- sso/hive/lib.php | 1 + 1 file changed, 1 insertion(+) diff --git a/sso/hive/lib.php b/sso/hive/lib.php index 85149c08ac9..5ba3c2f4a3f 100755 --- a/sso/hive/lib.php +++ b/sso/hive/lib.php @@ -57,6 +57,7 @@ function sso_user_login($username, $password) { $cookie = explode(';', $header[1]); $cookie = $cookie[0]; $SESSION->HIVE_SESSION = $cookie; + $SESSION->HIVE_PASSWORD = $password; return true; } }