Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 1745)
+++ branches/2.8.x/CHANGELOG	(revision 1746)
@@ -13,6 +13,9 @@
 
 
 
+08 Sep-2012 Build 1746 Dietmar Woellbrink (Luisehahne)
+# add prefix wb_ to class name for content container 
+  if module has the same name as a html markup e.g code
 08 Sep-2012 Build 1745 Dietmar Woellbrink (Luisehahne)
 ! add div container in page_content for each sections,
 ! update droplets SectionPicker, ShowWysiwyg and ShowRandomWysiwyg
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 1745)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 1746)
@@ -51,5 +51,5 @@
 
 // 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.3');
-if(!defined('REVISION')) define('REVISION', '1745');
+if(!defined('REVISION')) define('REVISION', '1746');
 if(!defined('SP')) define('SP', '');
Index: branches/2.8.x/wb/framework/frontend.functions.php
===================================================================
--- branches/2.8.x/wb/framework/frontend.functions.php	(revision 1745)
+++ branches/2.8.x/wb/framework/frontend.functions.php	(revision 1746)
@@ -306,7 +306,7 @@
 				// fetch content -- this is where to place possible output-filters (before highlighting)
 					ob_start(); // fetch original content
                     $sectionAnchor = (defined('SEC_ANCHOR') && SEC_ANCHOR!='') ? SEC_ANCHOR.$section_id : 'section_'.$section_id;
-                    echo PHP_EOL.'<div id="'.$sectionAnchor.'" class="'.$module.'" >'.PHP_EOL;
+                    echo PHP_EOL.'<div id="'.$sectionAnchor.'" class="wb_'.$module.'" >'.PHP_EOL;
 					require(WB_PATH.'/modules/'.$module.'/view.php');
                     echo PHP_EOL.'</div><!-- '.$module.$section_id.' -->'.PHP_EOL;
 					$content = ob_get_clean();
Index: branches/2.8.x/wb/modules/droplets/example/SectionPicker.php
===================================================================
--- branches/2.8.x/wb/modules/droplets/example/SectionPicker.php	(revision 1745)
+++ branches/2.8.x/wb/modules/droplets/example/SectionPicker.php	(revision 1746)
@@ -21,7 +21,7 @@
 			$section_id = $sid;
 			ob_start();
             $sectionAnchor = (defined('SEC_ANCHOR') && SEC_ANCHOR!='') ? SEC_ANCHOR.$section_id : 'section_'.$section_id;
-            echo PHP_EOL.'<div id="'.$sectionAnchor.'" class="'.$module.'" >'.PHP_EOL;
+            echo PHP_EOL.'<div id="'.$sectionAnchor.'" class="wb_'.$module.'" >'.PHP_EOL;
             require(WB_PATH.'/modules/'.$module.'/view.php');
             echo PHP_EOL.'</div><!-- '.$module.$section_id.' -->'.PHP_EOL;
 			$content = $_sFrontendCss.ob_get_clean();
Index: branches/2.8.x/wb/modules/droplets/example/ShowWysiwyg.php
===================================================================
--- branches/2.8.x/wb/modules/droplets/example/ShowWysiwyg.php	(revision 1745)
+++ branches/2.8.x/wb/modules/droplets/example/ShowWysiwyg.php	(revision 1746)
@@ -10,7 +10,7 @@
         $section_id = $section;
         ob_start(); // generate output by regulary wysiwyg module
         $sectionAnchor = (defined('SEC_ANCHOR') && SEC_ANCHOR!='') ? SEC_ANCHOR.$section_id : 'section_'.$section_id;
-        echo PHP_EOL.'<div id="'.$sectionAnchor.'" class="'.$module.'" >'.PHP_EOL;
+        echo PHP_EOL.'<div id="'.$sectionAnchor.'" class="wb_'.$module.'" >'.PHP_EOL;
         require(WB_PATH.'/modules/wysiwyg/view.php');
         echo PHP_EOL.'</div><!-- '.$module.$section_id.' -->'.PHP_EOL;
         $content = ob_get_clean();
Index: branches/2.8.x/wb/modules/droplets/example/ShowRandomWysiwyg.php
===================================================================
--- branches/2.8.x/wb/modules/droplets/example/ShowRandomWysiwyg.php	(revision 1745)
+++ branches/2.8.x/wb/modules/droplets/example/ShowRandomWysiwyg.php	(revision 1746)
@@ -12,7 +12,7 @@
             $section_id = $aSections[array_rand($aSections)]; // get random element
             ob_start(); // generate output by wysiwyg module
             $sectionAnchor = (defined('SEC_ANCHOR') && SEC_ANCHOR!='') ? SEC_ANCHOR.$section_id : 'section_'.$section_id;
-            echo PHP_EOL.'<div id="'.$sectionAnchor.'" class="'.$module.'" >'.PHP_EOL;
+            echo PHP_EOL.'<div id="'.$sectionAnchor.'" class="wb_'.$module.'" >'.PHP_EOL;
             require(WB_PATH.'/modules/wysiwyg/view.php');
             echo PHP_EOL.'</div><!-- '.$module.$section_id.' -->'.PHP_EOL;
             $content = ob_get_clean();
