Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormattab <matthieu.aubry@gmail.com>2014-06-25 06:44:28 +0400
committermattab <matthieu.aubry@gmail.com>2014-06-25 06:44:28 +0400
commit6ca0524823d327a9ea9a50ea9403b48936459285 (patch)
tree960a69fdb2523c467321b486be6c2cbe13a32ea0 /core/Version.php
parent2e1384b188dea06a39e09d8e38e8644114f40a04 (diff)
Fixes #5371 Make Piwik work PHP session hash function is non default such as sha1 or sha512 or other
id is now VARCHAR field Tested with: session.hash_function = sha256 Had to use VARCHAR as the session id can be 128 chars eg. ``` $ php -r "var_dump(hash('sha512','test'));" string(128) "ee26b0dd4af7e749aa1a8ee3c10ae9923f618980772e473f8819a5d4940e0db27ac185f8a0e1d5f84f88bc887fd67b143732c304cc5fa9ad8e6f57f50028a8ff" ```
Diffstat (limited to 'core/Version.php')
-rw-r--r--core/Version.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Version.php b/core/Version.php
index afdc38f7b5..d7a34adaa9 100644
--- a/core/Version.php
+++ b/core/Version.php
@@ -21,5 +21,5 @@ final class Version
* The current Piwik version.
* @var string
*/
- const VERSION = '2.4.0-b7';
+ const VERSION = '2.4.0-b8';
}