This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
kiduc
/
bibiuc.com
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
59
Wiki
Activity
Browse Source
logout bug fix
logout affects only the current installation
pull/55/head
Matthias Vogel
11 years ago
parent
a257c1c2ea
commit
e4ecaa72f7
1 changed files
with
5 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+5
-1
system/admin/views/logout.html.php
+ 5
- 1
system/admin/views/logout.html.php
View File
@ -1,6 +1,10 @@
<
?
php
session_destroy
();
unset
(
$_SESSION
[
config
(
"
site.url
"
)]);
if
(
empty
(
$_SESSION
))
{
session_destroy
();
}
header
(
'location: login'
);
Write
Preview
Loading…
Cancel
Save