*** empty log message ***

This commit is contained in:
duergner 2003-03-18 12:28:59 +00:00
parent 280a98c41c
commit abcdc922f9
1 changed files with 4 additions and 3 deletions

View File

@ -22,10 +22,10 @@ $Id$
LDAP Account Manager checking login data.
*/
?>
<?
// including ldap.php which provides basic ldap functions
session_name("LDAP Account Manager");
session_start();
include_once("../lib/ldap.php");
// checking if the submitted username/password is correct.
@ -36,6 +36,7 @@ if($action == "checklogin")
$result = $ldap->connect($username,$passwd);
if($result == True)
{
session_register($ldap->server);
include("./main.php"); // Username/password correct. Loading main Frame.
}
else