Commit 7705b9445f191803c0b83d3fa21165d85ca37aa7
1 parent
7f0d4614
WSA-10
"When user max_sessions is reached, attempting to authenticate returns a null session." Update. Added webservice/validateSessionCount to config.ini. Defaults to false. Reviewed By: Kevin Fourie git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@7027 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
1 additions
and
1 deletions
ktapi/KTAPISession.inc.php
| ... | ... | @@ -175,7 +175,7 @@ class KTAPI_UserSession extends KTAPI_Session |
| 175 | 175 | Session::removeStaleSessions(); |
| 176 | 176 | |
| 177 | 177 | $config = &KTConfig::getSingleton(); |
| 178 | - $validateSession = $config->get('webservice/validateSessionCount', true); | |
| 178 | + $validateSession = $config->get('webservice/validateSessionCount', false); | |
| 179 | 179 | |
| 180 | 180 | if ($validateSession) |
| 181 | 181 | { | ... | ... |