diff options
author | TheTroll <trolldev@gmail.com> | 2010-02-28 12:58:58 +0100 |
---|---|---|
committer | TheTroll <trolldev@gmail.com> | 2010-02-28 12:58:58 +0100 |
commit | 547fd24f4b448e7b56c91c91bfc2630521c50ac6 (patch) | |
tree | 2c01f43feecd55b07de61b8885456b64ba615401 /includes/include.php | |
parent | 5f5250a9b693ea62075e9677b0efe53b6c4bc013 (diff) | |
download | istreamdev-547fd24f4b448e7b56c91c91bfc2630521c50ac6.tar.gz istreamdev-547fd24f4b448e7b56c91c91bfc2630521c50ac6.tar.bz2 |
Added a button to delete all sessions
Diffstat (limited to 'includes/include.php')
-rwxr-xr-x | includes/include.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/includes/include.php b/includes/include.php index 05a2ce6..de9cfa4 100755 --- a/includes/include.php +++ b/includes/include.php @@ -54,6 +54,11 @@ function selectpage() case ("stream"): include('includes/inc_stream.php'); break; + case ("stopallstreamings"): + sessiondelete('all'); + $_SESSION['currentcat'] = NULL; + include('includes/inc_home.php'); + break; case ("listcategory"): include('includes/inc_cat.php'); break; |