Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 2083)
+++ branches/2.8.x/CHANGELOG	(revision 2084)
@@ -11,6 +11,8 @@
 ! = Update/Change
 ===============================================================================
 
+16 Jan-2014 Build 2084 Manuela v.d.Decken(DarkViper)
+# modules/wysiwyg/upgrade copy-past mistake corrected
 15 Jan-2014 Build 2083 Manuela v.d.Decken(DarkViper)
 # modules/news/upgrade manipulation of {SYSVAR:}-Tags fixed
 # modules/wysiwyg/upgrade manipulation of {SYSVAR:}-Tags fixed
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 2083)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 2084)
@@ -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.4');
-if(!defined('REVISION')) define('REVISION', '2083');
+if(!defined('REVISION')) define('REVISION', '2084');
 if(!defined('SP')) define('SP', '');
Index: branches/2.8.x/wb/modules/wysiwyg/upgrade.php
===================================================================
--- branches/2.8.x/wb/modules/wysiwyg/upgrade.php	(revision 2083)
+++ branches/2.8.x/wb/modules/wysiwyg/upgrade.php	(revision 2084)
@@ -101,14 +101,12 @@
                 $aReplace = array( '{SYSVAR:AppUrl.MediaDir}', '{SYSVAR:AppUrl}', '{SYSVAR:AppUrl.MediaDir}', '{SYSVAR:AppUrl}', '\1', '\1');
                 while (($aEntry = $oEntrySet->fetchRow(MYSQL_ASSOC))) {
                     $iCount = 0;
-                    $aSubject = array($aEntry['content_long'], $aEntry['content_short']);
-                    $aNewContents = preg_replace($aSearch, $aReplace, $aSubject, -1, $iCount);
+                    $aEntry['content'] = preg_replace($aSearch, $aReplace, $aEntry['content'], -1, $iCount);
                     if ($iCount > 0) {
                         $iReplaced += $iCount;
-                        $sql = 'UPDATE `'.$oDb->TablePrefix.'mod_news_posts` '
-                             . 'SET `content_long`=\''.$oDb->escapeString($aNewContents[0]).'\', '
-                             .     '`content_short`=\''.$oDb->escapeString($aNewContents[1]).'\' '
-                             . 'WHERE `post_id`='.$aEntry['post_id'];
+                        $sql = 'UPDATE `'.$oDb->TablePrefix.'mod_wysiwyg` '
+                             . 'SET `content`=\''.$oDb->escapeString($aEntry['content']).'\' '
+                             . 'WHERE `section_id`='.$aEntry['section_id'];
                         $oDb->doQuery($sql);
                         $iRecords++;
                     }
