mirror of
https://github.com/nuxsmin/sysPass.git
synced 2026-03-21 07:46:50 +01:00
* [FIX] Fixes #383. LDAP logins will be case-insensitive.
This commit is contained in:
@@ -40,7 +40,7 @@ define('LOCALES_PATH', __DIR__ . DIRECTORY_SEPARATOR . 'locales');
|
||||
define('SQL_PATH', __DIR__ . DIRECTORY_SEPARATOR . 'sql');
|
||||
define('LOG_FILE', __DIR__ . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . 'config' . DIRECTORY_SEPARATOR . 'syspass.log');
|
||||
|
||||
define('DEBUG', true);
|
||||
define('DEBUG', false);
|
||||
|
||||
// Required random_compat polyfill for random_bytes() and random_int()
|
||||
// @see https://github.com/paragonie/random_compat/tree/v2.0.4#random_compat
|
||||
|
||||
@@ -405,8 +405,8 @@ class Util
|
||||
*/
|
||||
public static function getVersion($retBuild = false, $normalized = false)
|
||||
{
|
||||
$build = 17030601;
|
||||
$version = [2, 1, 1];
|
||||
$build = 17031201;
|
||||
$version = [2, 1, 2];
|
||||
|
||||
if ($normalized === true) {
|
||||
return [implode('', $version), $build];
|
||||
|
||||
Reference in New Issue
Block a user