-
Notifications
You must be signed in to change notification settings - Fork 1
/
expired.php
executable file
·46 lines (42 loc) · 1.25 KB
/
expired.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php
/* I codici qui inseriti sono proprietà di
* Francesco Stasi, pertanto ne è vietata la
* vendita e la cessione a terzi senza previa
* autorizzazione dell' autore.
*/
require_once("config.php");
require_once("libs/common.php");
require_once("libs/character_lib.php");
if(!isset($_SESSION))
{
session_start();
}
if(isset($_SESSION['char_id'])){
$char_obj=new Character($_SESSION['char_id']);
$char_obj->setOffline();
}
session_unset();
session_destroy();
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="author" content="Francesco Stasi"/>
<title>Sessione Scaduta</title>
<link href="css/style.css" rel="stylesheet" type="text/css" />
<link href="css/custom-theme/jquery-ui-1.8.13.custom.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery-ui-1.8.6.custom.min.js"></script>
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="center">
<p class="centertxt">
La tua sessione è scaduta. <br />
<a href="<?php echo $url_land; ?>" target="_top">Effettua nuovamente il login.</a></p>
</div>
</body>
</html>