Revision 1996
Added by Luisehahne about 12 years ago
- /framework/initialize.php::readConfiguration missing constants setting solved
| branches/2.8.x/CHANGELOG | ||
|---|---|---|
| 11 | 11 |
! = Update/Change |
| 12 | 12 |
=============================================================================== |
| 13 | 13 |
|
| 14 |
09 Nov-2013 Build 1996 Dietmar Woellbrink (Luisehahne) |
|
| 15 |
# /framework/initialize.php::readConfiguration missing constants setting solved |
|
| 14 | 16 |
07 Nov-2013 Build 1995 Manuela v.d.Decken(DarkViper) |
| 15 | 17 |
# output_filter > filters/filterWbLink solved Entity problem by splitting arguments |
| 16 | 18 |
06 Nov-2013 Build 1994 Manuela v.d.Decken(DarkViper) |
| 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', '1995');
|
|
| 54 |
if(!defined('REVISION')) define('REVISION', '1996');
|
|
| 55 | 55 |
if(!defined('SP')) define('SP', '');
|
| branches/2.8.x/wb/framework/initialize.php | ||
|---|---|---|
| 115 | 115 |
if(is_readable($sSetupFile)) {
|
| 116 | 116 |
$aCfg = parse_ini_file($sSetupFile, true); |
| 117 | 117 |
foreach($aCfg['Constants'] as $key=>$value) {
|
| 118 |
switch($key):
|
|
| 118 |
switch(strtoupper($key)):
|
|
| 119 | 119 |
case 'DEBUG': |
| 120 | 120 |
$value = filter_var($value, FILTER_VALIDATE_BOOLEAN); |
| 121 | 121 |
if(!defined('DEBUG')) { define('DEBUG', $value); }
|
| ... | ... | |
| 185 | 185 |
}else {
|
| 186 | 186 |
$aSqlData = readConfiguration($sDbConnectType); |
| 187 | 187 |
} |
| 188 |
SetInstallPathConstants(); |
|
| 188 | 189 |
// sanitize $_SERVER['HTTP_REFERER'] --- |
| 189 | 190 |
SanitizeHttpReferer(WB_URL); |
| 190 |
SetInstallPathConstants(); |
|
| 191 | 191 |
// register WB basic autoloader --- |
| 192 | 192 |
$sTmp = dirname(__FILE__).'/WbAutoloader.php'; |
| 193 | 193 |
if(!class_exists('WbAutoloader')){
|
Also available in: Unified diff