Merge pull request #336 from ArthurHoaro/login-hotfix

Allow uppercase letters in PHP sessionid format
This commit is contained in:
Arthur 2015-09-02 17:55:11 +02:00
commit 67ee1435f8
2 changed files with 2 additions and 2 deletions

2
application/Utils.php Normal file → Executable file
View file

@ -156,7 +156,7 @@ function is_session_id_valid($sessionId)
return false; return false;
} }
if (!preg_match('/^[a-z0-9]{2,32}$/', $sessionId)) { if (!preg_match('/^[a-z0-9]{2,32}$/i', $sessionId)) {
return false; return false;
} }

2
tests/UtilsTest.php Normal file → Executable file
View file

@ -156,7 +156,7 @@ class UtilsTest extends PHPUnit_Framework_TestCase
*/ */
public function testIsSessionIdValid() public function testIsSessionIdValid()
{ {
$this->assertTrue(is_session_id_valid('123456789012345678901234567890az')); $this->assertTrue(is_session_id_valid('azertyuiop123456789AZERTYUIOP1aA'));
} }
/** /**