diff options
author | ArthurHoaro <arthur@hoa.ro> | 2015-09-02 17:00:38 +0200 |
---|---|---|
committer | ArthurHoaro <arthur@hoa.ro> | 2015-09-02 17:00:38 +0200 |
commit | 4d30975a06354c5a01d2dfdfc5441e160ef4073e (patch) | |
tree | 5756a3816ca0fbeb4036c632c369406aef86f29a /tests | |
parent | 53cc2b93b85a080c6c06bc3633fb454241fc5699 (diff) | |
download | Shaarli-4d30975a06354c5a01d2dfdfc5441e160ef4073e.tar.gz Shaarli-4d30975a06354c5a01d2dfdfc5441e160ef4073e.tar.zst Shaarli-4d30975a06354c5a01d2dfdfc5441e160ef4073e.zip |
Allow uppercase letters in PHP sessionid format
Fixes shaarli/Shaarli#335 - Wrong login/password since v0.5.2
Regression introduced in 06b6660a7e8891c6e1c47815cf50ee5b2ef5f270
Diffstat (limited to 'tests')
-rwxr-xr-x[-rw-r--r--] | tests/UtilsTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/UtilsTest.php b/tests/UtilsTest.php index e39ce6be..5175dde0 100644..100755 --- a/tests/UtilsTest.php +++ b/tests/UtilsTest.php | |||
@@ -156,7 +156,7 @@ class UtilsTest extends PHPUnit_Framework_TestCase | |||
156 | */ | 156 | */ |
157 | public function testIsSessionIdValid() | 157 | public function testIsSessionIdValid() |
158 | { | 158 | { |
159 | $this->assertTrue(is_session_id_valid('123456789012345678901234567890az')); | 159 | $this->assertTrue(is_session_id_valid('azertyuiop123456789AZERTYUIOP1aA')); |
160 | } | 160 | } |
161 | 161 | ||
162 | /** | 162 | /** |