3172f27c7ab32af5d06a7bd502d725a642391425
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 Logger mit Logleveln

bernd authored 14 years ago

9)   logger(LOG_INFO, "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) }
bernd role auf anonymous setzen,...

bernd authored 14 years ago

12) $_SESSION['role'] = ROLE_ANONYMOUS;
bernd webinterface => /webinterface

bernd authored 17 years ago

13) 
bernd Logger mit Logleveln

bernd authored 14 years ago

14) logger(LOG_INFO, "modules/index/logout", "logout", "logged out");
bernd eliminate .php extensions f...

bernd authored 15 years ago

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>