summaryrefslogtreecommitdiff
path: root/logout.php
diff options
context:
space:
mode:
authormodela bitweaver <spiderr@bitweaver.org>2021-02-05 02:13:10 -0500
committermodela bitweaver <spiderr@bitweaver.org>2021-02-05 02:13:10 -0500
commit47822c47ebd619938eb31858d013aaf4c51f1c98 (patch)
tree07ce53405bf86274f405e719e8a5f3281e76d952 /logout.php
parentb00842ac386a382c61a8f7b6314fdd60aaf447d0 (diff)
downloadusers-47822c47ebd619938eb31858d013aaf4c51f1c98.tar.gz
users-47822c47ebd619938eb31858d013aaf4c51f1c98.tar.bz2
users-47822c47ebd619938eb31858d013aaf4c51f1c98.zip
fix INCLUDE and CLASS paths
Diffstat (limited to 'logout.php')
-rw-r--r--logout.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/logout.php b/logout.php
index 0278393..8bc7ed0 100644
--- a/logout.php
+++ b/logout.php
@@ -17,11 +17,11 @@ require_once( '../kernel/includes/setup_inc.php' );
global $gBitSystem;
// go offline in Live Support
if ($gBitSystem->isPackageActive( 'LIVE_SUPPORT_PKG_NAME' ) ) {
- include_once( LIVE_SUPPORT_PKG_PATH.'ls_lib.php' );
+ include_once( LIVE_SUPPORT_PKG_INCLUDE_PATH.'ls_lib.php' );
if ($lslib->get_operator_status($user) != 'offline') {
$lslib->set_operator_status($user, 'offline');
}
}
$gBitUser->logout();
header ("location: ".$gBitSystem->getDefaultPage());
-exit; \ No newline at end of file
+exit;