forked from emaijala/MLInvoice
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlogout.php
More file actions
executable file
·61 lines (43 loc) · 1.49 KB
/
logout.php
File metadata and controls
executable file
·61 lines (43 loc) · 1.49 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
/*******************************************************************************
MLInvoice: web-based invoicing application.
Copyright (C) 2010-2016 Ere Maijala
Portions based on:
PkLasku : web-based invoicing software.
Copyright (C) 2004-2008 Samu Reinikainen
This program is free software. See attached LICENSE.
*******************************************************************************/
/*******************************************************************************
MLInvoice: web-pohjainen laskutusohjelma.
Copyright (C) 2010-2016 Ere Maijala
Perustuu osittain sovellukseen:
PkLasku : web-pohjainen laskutusohjelmisto.
Copyright (C) 2004-2008 Samu Reinikainen
Tämä ohjelma on vapaa. Lue oheinen LICENSE.
*******************************************************************************/
// buffered, so we can redirect later if necessary
ini_set('implicit_flush', 'Off');
ob_start();
require_once 'config.php';
require_once 'sessionfuncs.php';
require_once 'htmlfuncs.php';
require_once 'sqlfuncs.php';
sesVerifySession();
require_once 'localize.php';
sesEndSession();
echo htmlPageStart();
?>
<body>
<div class="pagewrapper ui-widget ui-widget-content">
<div style="padding: 30px;">
<h1><?php echo $GLOBALS['locThankYou']?></h1>
<p>
<?php echo $GLOBALS['locSessionClosed']?>
</p>
<p>
<a href="login.php"><?php echo $GLOBALS['locBackToLogin']?></a>
</p>
</div>
</div>
</body>
</html>