include("pdainclude.html");
//**** sha1 pass
if($xcipher && $mdpass && $uid && checkuid($uid))
{
$password=$mdpass;
$method = "SHA1";
}
else $uid="";
//**************
if ($ddomain) $username = $ddomain . "/" . $username;
$dologin = true;
if (!$otherconfig["FULLMERAK"] && $integrate) $dologin = authenticateuser($username, $password);
if ($dologin && $id = loginuser($username, $password, $method, $uid))
{
$location = "get.html?id=$id&get=1";
header("Location: " . $location);
exit;
}
else
{
$skindata['message']=$nologin["MESSAGE"];
include("index.html");
}
?>