Revision 1964
Added by darkviper about 12 years ago
| branches/2.8.x/CHANGELOG | ||
|---|---|---|
| 11 | 11 |
! = Update/Change |
| 12 | 12 |
=============================================================================== |
| 13 | 13 |
|
| 14 |
18 Sep-2013 Build 1964 Manuela v.d.Decken(DarkViper) |
|
| 15 |
! modified loading sequence of Password classes |
|
| 14 | 16 |
18 Sep-2013 Build 1963 Manuela v.d.Decken(DarkViper) |
| 15 | 17 |
+ adding SERVER_TIMEZONE to table settings |
| 16 | 18 |
+ insert date_default_timezone_set( SERVER_TIMEZONE ) into /framework/initialize.php |
| 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', '1963');
|
|
| 54 |
if(!defined('REVISION')) define('REVISION', '1964');
|
|
| 55 | 55 |
if(!defined('SP')) define('SP', '');
|
| branches/2.8.x/wb/framework/Password.php | ||
|---|---|---|
| 31 | 31 |
* ISTeam changes: added SHA-256, SHA-512 (2012/10/27 Werner v.d. Decken) |
| 32 | 32 |
*/ |
| 33 | 33 |
|
| 34 |
if(!class_exists('PasswordHash', false)) {
|
|
| 35 |
include(dirname(dirname(__FILE__)).'/include/phpass/PasswordHash.php'); |
|
| 36 |
} |
|
| 37 |
|
|
| 38 | 34 |
class Password |
| 39 | 35 |
{
|
| 40 | 36 |
|
Also available in: Unified diff
modified loading sequence of Password classes