Commit 4c20f7385005397bfe7d311c83c8966620c4061d
1 parent
a8a22793
Added Session_Destroy to logout procedure (KTE-65)
Showing
1 changed file
with
1 additions
and
0 deletions
webservice/clienttools/services/0.9/auth.php
| @@ -147,6 +147,7 @@ class auth extends client_service { | @@ -147,6 +147,7 @@ class auth extends client_service { | ||
| 147 | session_id($newSessId); | 147 | session_id($newSessId); |
| 148 | $this->Response->setStatus('session_id',$newSessId); | 148 | $this->Response->setStatus('session_id',$newSessId); |
| 149 | $this->setResponse(array('logout'=>true)); | 149 | $this->setResponse(array('logout'=>true)); |
| 150 | + session_destroy(); | ||
| 150 | return true; | 151 | return true; |
| 151 | } | 152 | } |
| 152 | 153 |