63a0529b21bfd97a4ef395e8d3d3f513526357c6
bernd webinterface => /webinterface

bernd authored 17 years ago

1) <?php
2) 
3) require_once('session/start.php');
4) 
5) require_once('inc/error.php');
6) 
7) if (!session_destroy())
8) {
bernd eliminate .php extensions f...

bernd authored 15 years ago

9)   logger("modules/index/logout", "logout", "session timed out.");
bernd webinterface => /webinterface

bernd authored 17 years ago

10) 	system_failure('Die Sitzung konnte nicht geschlossen werden, eventuell ist die Wartezeit abgelaufen und die Sitzung wurde daher schon beendet.');
11) }
12) unset($_SESSION['role']);
13) 
bernd eliminate .php extensions f...

bernd authored 15 years ago

14) logger("modules/index/logout", "logout", "logged out");
15) 
bernd webinterface => /webinterface

bernd authored 17 years ago

16) output('
17) 
18) <h3>Abmeldung</h3>
19) 
20) <p>Sie wurden vom System abgemeldet.</p>
21) 
bernd eliminate .php extensions f...

bernd authored 15 years ago

22) <p>Um sich neu anzumelden, klicken Sie bitte hier: '.internal_link("index", "Anmeldung").'.</p>