Revision 1966
Added by darkviper about 11 years ago
branches/2.8.x/CHANGELOG | ||
---|---|---|
11 | 11 |
! = Update/Change |
12 | 12 |
=============================================================================== |
13 | 13 |
|
14 |
20 Sep-2013 Build 1966 Manuela v.d.Decken(DarkViper) |
|
15 |
! upgrade-script.php add loading interface PasswordHashInterface |
|
14 | 16 |
19 Sep-2013 Build 1965 Manuela v.d.Decken(DarkViper) |
15 | 17 |
+ framework/UpgradeHelper::getMissingTables() |
16 | 18 |
+ alias framework/UpgradeHelper::getMissingTables() with existsAllTables() |
branches/2.8.x/wb/upgrade-script.php | ||
---|---|---|
36 | 36 |
*/ |
37 | 37 |
if(!class_exists('PasswordHash', false)) |
38 | 38 |
{ |
39 |
include(dirname(__FILE__).'/framework/PasswordHashInterface.php'); |
|
39 | 40 |
include(dirname(__FILE__).'/include/phpass/PasswordHash.php'); |
40 | 41 |
} |
41 | 42 |
// Include config file |
branches/2.8.x/wb/admin/interface/version.php | ||
---|---|---|
51 | 51 |
|
52 | 52 |
// check if defined to avoid errors during installation (redirect to admin panel fails if PHP error/warnings are enabled) |
53 | 53 |
if(!defined('VERSION')) define('VERSION', '2.8.3'); |
54 |
if(!defined('REVISION')) define('REVISION', '1965');
|
|
54 |
if(!defined('REVISION')) define('REVISION', '1966');
|
|
55 | 55 |
if(!defined('SP')) define('SP', ''); |
Also available in: Unified diff
upgrade-script.php add loading interface PasswordHashInterface