Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 1432)
+++ branches/2.8.x/CHANGELOG	(revision 1433)
@@ -11,6 +11,8 @@
 ! = Update/Change
 
 ------------------------------------- 2.8.2 -------------------------------------
+13 Mae-2011 Build 1433 Dietmar Woellbrink (Luisehahne)
+# fixed bug : Call to undefined method wb::preprocess() 
 14 Feb-2011 Build 1432 Dietmar Woellbrink (Luisehahne)
 # update NL language file (Tks to Argos)
 11 Feb-2011 Build 1431 Dietmar Woellbrink (Luisehahne)
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 1432)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 1433)
@@ -52,6 +52,6 @@
 
 // check if defined to avoid errors during installation (redirect to admin panel fails if PHP error/warnings are enabled)
 if(!defined('VERSION')) define('VERSION', '2.8.2.RC5');
-if(!defined('REVISION')) define('REVISION', '1432');
+if(!defined('REVISION')) define('REVISION', '1433');
 
 ?>
Index: branches/2.8.x/wb/index.php
===================================================================
--- branches/2.8.x/wb/index.php	(revision 1432)
+++ branches/2.8.x/wb/index.php	(revision 1433)
@@ -123,7 +123,10 @@
 if(ob_get_length() > 0) { ob_end_clean(); }
 
 // wb->preprocess() -- replace all [wblink123] with real, internal links
-$wb->preprocess($output);
+if( method_exists($wb, 'preprocess') )
+{
+   $wb->preprocess($output);
+}
 // Load Droplet engine and process
 if(file_exists(WB_PATH .'/modules/droplets/droplets.php'))
 {
