-
Notifications
You must be signed in to change notification settings - Fork 0
/
logout.php
31 lines (28 loc) · 1.58 KB
/
logout.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
<?php
// *************************************************************************
// * *
// * DEPRIXA - Integrated Web system *
// * Copyright (c) JAOMWEB. All Rights Reserved *
// * *
// *************************************************************************
// * *
// * Email: [email protected] *
// * Website: http://www.jaom.info *
// * *
// *************************************************************************
// * *
// * This software is furnished under a license and may be used and copied *
// * only in accordance with the terms of such license and with the *
// * inclusion of the above copyright notice. *
// * If you Purchased from Codecanyon, Please read the full License from *
// * here- http://codecanyon.net/licenses/standard *
// * *
// *************************************************************************
define("_VALID_PHP", true);
require_once("init.php");
?>
<?php
if ($user->logged_in)
$user->logout();
redirect_to("index.php");
?>