Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 1577)
+++ branches/2.8.x/CHANGELOG	(revision 1578)
@@ -11,6 +11,8 @@
 ! = Update/Change
 
 =========================== add small Features 2.8.2 ==========================
+16 Jan-2012 Build 1578 Dietmar Woellbrink (Luisehahne)
+# fixed warning in domain independend image links
 16 Jan-2012 Build 1577 Dietmar Woellbrink (Luisehahne)
 # fixed save dirmode and filmode to 0 if not superadmin
 16 Jan-2012 Build 1576 Werner v.d.Decken(DarkViper)
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 1577)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 1578)
@@ -52,5 +52,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.2');
-if(!defined('REVISION')) define('REVISION', '1577');
+if(!defined('REVISION')) define('REVISION', '1578');
 if(!defined('SP')) define('SP', 'SP2');
Index: branches/2.8.x/wb/modules/wysiwyg/view.php
===================================================================
--- branches/2.8.x/wb/modules/wysiwyg/view.php	(revision 1577)
+++ branches/2.8.x/wb/modules/wysiwyg/view.php	(revision 1578)
@@ -21,7 +21,7 @@
 	throw new IllegalFileException();
 }
 /* -------------------------------------------------------- */
-$MEDIA_URL = WB_URL.MEDIA_DIRECTORY;
+$MEDIA_REL = WB_URL.MEDIA_DIRECTORY;
 // Get content
 $content = '';
 $sql = 'SELECT `content` FROM `'.TABLE_PREFIX.'mod_wysiwyg` WHERE `section_id`='.(int)$section_id;
Index: branches/2.8.x/wb/modules/wysiwyg/modify.php
===================================================================
--- branches/2.8.x/wb/modules/wysiwyg/modify.php	(revision 1577)
+++ branches/2.8.x/wb/modules/wysiwyg/modify.php	(revision 1578)
@@ -23,11 +23,11 @@
 }
 /* -------------------------------------------------------- */
 
-$MEDIA_URL = WB_URL.MEDIA_DIRECTORY;
+$MEDIA_REL = WB_URL.MEDIA_DIRECTORY;
 // Get page content
-$query = 'SELECT `content` FROM `'.TABLE_PREFIX.'mod_wysiwyg` WHERE `section_id`='.(int)$section_id;
+$sql = 'SELECT `content` FROM `'.TABLE_PREFIX.'mod_wysiwyg` WHERE `section_id`='.(int)$section_id;
 if ( ($content = $database->get_one($sql)) ) {
-	$content = htmlspecialchars(str_replace('{SYSVAR:MEDIA_REL}',$MEDIA_URL, $content));
+	$content = htmlspecialchars(str_replace('{SYSVAR:MEDIA_REL}',$MEDIA_REL, $content));
 }else {
 	$content = '';
 }
