diff options
| author | modela bitweaver <spiderr@bitweaver.org> | 2021-02-05 02:13:10 -0500 |
|---|---|---|
| committer | modela bitweaver <spiderr@bitweaver.org> | 2021-02-05 02:13:10 -0500 |
| commit | 47822c47ebd619938eb31858d013aaf4c51f1c98 (patch) | |
| tree | 07ce53405bf86274f405e719e8a5f3281e76d952 /logout.php | |
| parent | b00842ac386a382c61a8f7b6314fdd60aaf447d0 (diff) | |
| download | users-47822c47ebd619938eb31858d013aaf4c51f1c98.tar.gz users-47822c47ebd619938eb31858d013aaf4c51f1c98.tar.bz2 users-47822c47ebd619938eb31858d013aaf4c51f1c98.zip | |
fix INCLUDE and CLASS paths
Diffstat (limited to 'logout.php')
| -rw-r--r-- | logout.php | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |
