Revision 1433
Added by Dietmar over 13 years ago
branches/2.8.x/CHANGELOG | ||
---|---|---|
11 | 11 |
! = Update/Change |
12 | 12 |
|
13 | 13 |
------------------------------------- 2.8.2 ------------------------------------- |
14 |
13 Mae-2011 Build 1433 Dietmar Woellbrink (Luisehahne) |
|
15 |
# fixed bug : Call to undefined method wb::preprocess() |
|
14 | 16 |
14 Feb-2011 Build 1432 Dietmar Woellbrink (Luisehahne) |
15 | 17 |
# update NL language file (Tks to Argos) |
16 | 18 |
11 Feb-2011 Build 1431 Dietmar Woellbrink (Luisehahne) |
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.RC5'); |
55 |
if(!defined('REVISION')) define('REVISION', '1432');
|
|
55 |
if(!defined('REVISION')) define('REVISION', '1433');
|
|
56 | 56 |
|
57 | 57 |
?> |
branches/2.8.x/wb/index.php | ||
---|---|---|
123 | 123 |
if(ob_get_length() > 0) { ob_end_clean(); } |
124 | 124 |
|
125 | 125 |
// wb->preprocess() -- replace all [wblink123] with real, internal links |
126 |
$wb->preprocess($output); |
|
126 |
if( method_exists($wb, 'preprocess') ) |
|
127 |
{ |
|
128 |
$wb->preprocess($output); |
|
129 |
} |
|
127 | 130 |
// Load Droplet engine and process |
128 | 131 |
if(file_exists(WB_PATH .'/modules/droplets/droplets.php')) |
129 | 132 |
{ |
Also available in: Unified diff
fixed bug : Call to undefined method wb::preprocess()