Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 1754)
+++ branches/2.8.x/CHANGELOG	(revision 1755)
@@ -13,6 +13,8 @@
 
 
 
+15 Sep-2012 Build 1755 Dietmar Woellbrink (Luisehahne)
+! update upgrade-script, see Revsion 1735
 15 Sep-2012 Build 1754 Dietmar Woellbrink (Luisehahne)
 # fixed Duplicate entry  for key 'PRIMARY' if adding a new  pageX
   search for ->page['root_parent'] == 0 in module and shoe_menu2 calls
Index: branches/2.8.x/wb/upgrade-script.php
===================================================================
--- branches/2.8.x/wb/upgrade-script.php	(revision 1754)
+++ branches/2.8.x/wb/upgrade-script.php	(revision 1755)
@@ -632,6 +632,21 @@
 	$description = "VARCHAR( 512 ) NOT NULL DEFAULT ''";
 	echo "Modify field viewing_users to pages table";
 	echo ($database->field_modify($table_name, $field_name, $description) ? " $OK<br />" : " $FAIL!<br />");
+
+	/**********************************************************
+	 *  - Remove/add PRIMARY KEY from/to "section_id" from table "mod_wysiwygs"
+	 */
+	$sTable = TABLE_PREFIX.'mod_wysiwyg';
+	$field_name = 'wysiwyg_id';
+	if(!$database->field_exists($sTable,$field_name)) {
+    	echo "Remove PRIMARY KEY from table mod_wysiwygs";
+        $sql = 'ALTER TABLE `'.DB_NAME.'`.`'.$sTable.'` DROP PRIMARY KEY';
+        echo ($database->query($sql) ? " $OK<br />" : " $FAIL!<br />");
+
+    	echo "add new PRIMARY KEY to table mod_wysiwygs";
+        $sql = 'ALTER TABLE `'.$sTable.'`  ADD `wysiwyg_id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY FIRST';
+        echo ($database->query($sql) ? " $OK<br />" : " $FAIL!<br />");
+    }
 }
 
 /**********************************************************
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 1754)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 1755)
@@ -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', '1754');
+if(!defined('REVISION')) define('REVISION', '1755');
 if(!defined('SP')) define('SP', '');
