Uploaded the 1.0 launcher website as well as test patcher website.

This commit is contained in:
Filip Maj 2017-01-11 19:21:33 -05:00
parent 63b3098592
commit a8f3fe28d4
32 changed files with 565 additions and 5 deletions

View file

@ -0,0 +1,20 @@
<?php
if(!isset($_COOKIE["sessionId"]))
{
header("Location: control_panel_login.php");
exit;
}
$g_sessionId = $_COOKIE["sessionId"];
try
{
$g_userId = GetUserIdFromSession($g_databaseConnection, $g_sessionId);
}
catch(Exception $e)
{
header("Location: control_panel_login.php");
exit;
}
?>