From 99e3a6349c7d56826e8ea060867fb2de3cd25929 Mon Sep 17 00:00:00 2001 From: Sebastian Grewe Date: Wed, 30 Apr 2014 15:20:46 +0200 Subject: [PATCH] [FIX] Password Hashing on new accounts --- public/include/autoloader.inc.php | 1 + public/index.php | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/public/include/autoloader.inc.php b/public/include/autoloader.inc.php index f04988c2..4d14e17e 100644 --- a/public/include/autoloader.inc.php +++ b/public/include/autoloader.inc.php @@ -17,6 +17,7 @@ require_once(INCLUDE_DIR . '/config/error_codes.inc.php'); require_once(CLASS_DIR . '/base.class.php'); require_once(CLASS_DIR . '/coins/coin_base.class.php'); require_once(CLASS_DIR . '/setting.class.php'); +require_once(INCLUDE_DIR . '/version.inc.php'); if (PHP_OS == 'WINNT') require_once(CLASS_DIR . '/memcached.class.php'); // Now decide on which coin class to load and instantiate diff --git a/public/index.php b/public/index.php index 4665a0a6..5a7db5f0 100644 --- a/public/index.php +++ b/public/index.php @@ -101,7 +101,6 @@ if (count(@$_SESSION['last_ip_pop']) == 2) { // version check and config check if not disabled if (@$_SESSION['USERDATA']['is_admin'] && $user->isAdmin(@$_SESSION['USERDATA']['id'])) { - require_once(INCLUDE_DIR . '/version.inc.php'); if (!@$config['skip_config_tests']) { require_once(INCLUDE_DIR . '/admin_checks.php'); }