login.tpl hided between my not yet pushed files! You evil login.tpl :D that might fix the auto login problem
--HG-- branch : quitta-gsoc-2013hg/feature/sse2
parent
40883e8afc
commit
ca769bf24b
@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
function login(){
|
||||
if ( helpers :: check_if_game_client () ){
|
||||
$result = Helpers::check_login_ingame();
|
||||
if( $result != "FALSE"){
|
||||
//handle successful login
|
||||
$_SESSION['user'] = $result['name'];
|
||||
$_SESSION['id'] = WebUsers::getId($result['id']);
|
||||
$_SESSION['ticket_user'] = Ticket_User::constr_ExternId($_SESSION['id']);
|
||||
//go back to the index page.
|
||||
header( 'Location: index.php' );
|
||||
exit;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue