Skip to content

Commit 99e3a63

Browse files
committed
[FIX] Password Hashing on new accounts
1 parent 61f7aa6 commit 99e3a63

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

public/include/autoloader.inc.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
require_once(CLASS_DIR . '/base.class.php');
1818
require_once(CLASS_DIR . '/coins/coin_base.class.php');
1919
require_once(CLASS_DIR . '/setting.class.php');
20+
require_once(INCLUDE_DIR . '/version.inc.php');
2021
if (PHP_OS == 'WINNT') require_once(CLASS_DIR . '/memcached.class.php');
2122

2223
// Now decide on which coin class to load and instantiate

public/index.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,6 @@ function cfip() { return (@defined('SECURITY')) ? 1 : 0; }
101101

102102
// version check and config check if not disabled
103103
if (@$_SESSION['USERDATA']['is_admin'] && $user->isAdmin(@$_SESSION['USERDATA']['id'])) {
104-
require_once(INCLUDE_DIR . '/version.inc.php');
105104
if (!@$config['skip_config_tests']) {
106105
require_once(INCLUDE_DIR . '/admin_checks.php');
107106
}

0 commit comments

Comments
 (0)