Revision 1433
Added by Luisehahne over 14 years ago
| 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()