summaryrefslogtreecommitdiffstats
path: root/logout.php
diff options
context:
space:
mode:
authorPaul 'flowerysong' Arthur <flowerysong00@yahoo.com>2010-03-14 03:40:47 +0000
committerPaul 'flowerysong' Arthur <flowerysong00@yahoo.com>2010-03-14 03:40:47 +0000
commit9a872491dd3d5846b772bdf2dc93873b7e8a688a (patch)
tree6aa083a3b085aac82d55120e84e7bb2e0000eb71 /logout.php
parent1b57e267e030c5463baab4136be66232a123d3a5 (diff)
downloadampache-9a872491dd3d5846b772bdf2dc93873b7e8a688a.tar.gz
ampache-9a872491dd3d5846b772bdf2dc93873b7e8a688a.tar.bz2
ampache-9a872491dd3d5846b772bdf2dc93873b7e8a688a.zip
Unbreak http auth, make it more sane. Old broken method renamed to null, in
case crazy people still want it. Add support for redirecting to a SSO provider after logout.
Diffstat (limited to 'logout.php')
-rw-r--r--logout.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/logout.php b/logout.php
index d78cdc36..b9bce721 100644
--- a/logout.php
+++ b/logout.php
@@ -1,4 +1,5 @@
<?php
+/* vim:set tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab: */
/*
Copyright (c) Ampache.org
@@ -26,5 +27,5 @@
require_once 'lib/init.php';
// To end a legitimate session, just call logout.
-vauth::logout();
+vauth::logout('',false);
?>