Revision 1138
Added by Ruud over 15 years ago
index.php | ||
---|---|---|
102 | 102 |
ob_start(); |
103 | 103 |
require(WB_PATH.'/templates/'.TEMPLATE.'/index.php'); |
104 | 104 |
$output = ob_get_contents(); |
105 |
ob_end_clean(); |
|
105 |
if (ob_get_length() > 0) ob_end_clean();
|
|
106 | 106 |
|
107 | 107 |
if(function_exists('evalDroplets')) { $output = evalDroplets($output); } |
108 | 108 |
if(function_exists('filter_frontend_output')) { $output = filter_frontend_output($output); } |
Also available in: Unified diff
Fixed bug in droplets. Multiple droplets with the same parameter did not extract the new parameter. (problem introduced by code optimisations for WB2.8)
Fixed usage of the depriciated (PHP 5.3.0) split() function in class.wb. (ticket #772)
Fixed notice ob_end_clean..failed to delete buffer. (ticket #779)