Revision 1350
Added by Luisehahne almost 15 years ago
| branches/2.8.x/CHANGELOG | ||
|---|---|---|
| 11 | 11 |
! = Update/Change |
| 12 | 12 |
|
| 13 | 13 |
------------------------------------- 2.8.2 ------------------------------------- |
| 14 |
20 Dec-2010 Dietmar Woellbrink (Luisehahne) |
|
| 15 |
# syntaxfix in initialize.php |
|
| 14 | 16 |
19 Dec-2010 Dietmar Woellbrink (Luisehahne) |
| 15 | 17 |
+ add ini_set('display_errors', 1) (Tks to Thorn)
|
| 16 | 18 |
! update headerinfos |
| branches/2.8.x/wb/admin/interface/version.php | ||
|---|---|---|
| 52 | 52 |
|
| 53 | 53 |
// check if defined to avoid errors during installation (redirect to admin panel fails if PHP error/warnings are enabled) |
| 54 | 54 |
if(!defined('VERSION')) define('VERSION', '2.8.2.RC1');
|
| 55 |
if(!defined('REVISION')) define('REVISION', '1349');
|
|
| 55 |
if(!defined('REVISION')) define('REVISION', '1350');
|
|
| 56 | 56 |
|
| 57 | 57 |
?> |
| branches/2.8.x/wb/framework/initialize.php | ||
|---|---|---|
| 69 | 69 |
if(intval(ER_LEVEL) > 0 ) |
| 70 | 70 |
{
|
| 71 | 71 |
error_reporting(ER_LEVEL); |
| 72 |
if(ini_get ( 'display_errors' == 0 ) )
|
|
| 72 |
if(ini_get ( 'display_errors' ) == 0 )
|
|
| 73 | 73 |
{
|
| 74 | 74 |
ini_set('display_errors', 1);
|
| 75 | 75 |
} |
Also available in: Unified diff
syntaxfix in initialize.php