Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 2024)
+++ branches/2.8.x/CHANGELOG	(revision 2025)
@@ -11,6 +11,8 @@
 ! = Update/Change
 ===============================================================================
 
+07 Dec-2013 Build 2025 Manuela v.d.Decken(DarkViper)
+# mod-MultiLingual forgotten fix in Lib.php :(
 07 Dec-2013 Build 2024 Manuela v.d.Decken(DarkViper)
 ! some new or fixed Droplets added
 07 Dec-2013 Build 2023 Manuela v.d.Decken(DarkViper)
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 2024)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 2025)
@@ -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', '2024');
+if(!defined('REVISION')) define('REVISION', '2025');
 if(!defined('SP')) define('SP', '');
Index: branches/2.8.x/wb/modules/MultiLingual/Lib.php
===================================================================
--- branches/2.8.x/wb/modules/MultiLingual/Lib.php	(revision 2024)
+++ branches/2.8.x/wb/modules/MultiLingual/Lib.php	(revision 2025)
@@ -249,7 +249,7 @@
 		// remove all pages from list with not avaliable languages
 			$aPossibleMatchingPages = array_intersect_key($aMatchingPages, $aAllowedRootLanguages);
 		// add Allowed root pages to possible matches
-			$aAvailablePages = array_merge($aPossibleMatchingPages, $aAllowedRootLanguages);
+			$aAvailablePages = array_merge($aAllowedRootLanguages, $aPossibleMatchingPages);
 			foreach ( $aAvailablePages AS $aPage)
 			{
 				$aTplData[] = array(
