mirror of
				https://bitbucket.org/Ioncannon/project-meteor-server.git
				synced 2025-05-20 08:26:59 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			298 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			298 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?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;
 | |
| }
 | |
| 
 | |
| ?>
 |