Problem with session_register fixed. Problem with duplicate sessions fixed
This commit is contained in:
parent
b166dc8f36
commit
25825c4a69
|
@ -23,14 +23,13 @@ $Id$
|
||||||
LDAP Account Manager checking login data.
|
LDAP Account Manager checking login data.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// checking if the submitted username/password is correct.
|
||||||
|
if($action == "checklogin")
|
||||||
|
{
|
||||||
// including ldap.php which provides basic ldap functions
|
// including ldap.php which provides basic ldap functions
|
||||||
include_once("../lib/ldap.php");
|
include_once("../lib/ldap.php");
|
||||||
|
|
||||||
$config = new Config; // Creating new Config object
|
$config = new Config; // Creating new Config object
|
||||||
|
|
||||||
// checking if the submitted username/password is correct.
|
|
||||||
if($action == "checklogin")
|
|
||||||
{
|
|
||||||
$ldap = new Ldap($config); // Creating new Ldap object
|
$ldap = new Ldap($config); // Creating new Ldap object
|
||||||
$result = $ldap->connect($username,$passwd);
|
$result = $ldap->connect($username,$passwd);
|
||||||
if($result == True) // Username/password correct. Doing some configuration and loading main Frame.
|
if($result == True) // Username/password correct. Doing some configuration and loading main Frame.
|
||||||
|
@ -70,6 +69,10 @@ else
|
||||||
|
|
||||||
session_register("config"); // Register $config object in session
|
session_register("config"); // Register $config object in session
|
||||||
|
|
||||||
|
// including ldap.php which provides basic ldap functions
|
||||||
|
include_once("../lib/ldap.php");
|
||||||
|
|
||||||
|
$config = new Config; // Creating new Config object
|
||||||
|
|
||||||
include("./login.inc");
|
include("./login.inc");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue