Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 2114)
+++ branches/2.8.x/CHANGELOG	(revision 2115)
@@ -11,6 +11,11 @@
 ! = Update/Change
 ===============================================================================
 
+01 Dec-2014 Build 2114 Manuela v.d.Decken(DarkViper)
++ framework/UpgradeHelper additiona vars to method convInfoIni2InfoPhp()
+! module/show_menu2/ the directoryname of this 'Snippet' has been changed to ShowMenu2.
+- show_menu2: The Flag SM2::BUFFER has been removed
++ show_menu2: The Flag SM2::NOBUFFER was added
 01 Dec-2014 Build 2113 Manuela v.d.Decken(DarkViper)
 + framework/UpgradeHelper added new method convInfoIni2InfoPhp()
 25 Nov-2014 Build 2112 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 2114)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 2115)
@@ -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', '2113');
+if(!defined('REVISION')) define('REVISION', '2114');
 if(!defined('SP')) define('SP', '');
Index: branches/2.8.x/wb/framework/UpgradeHelper.php
===================================================================
--- branches/2.8.x/wb/framework/UpgradeHelper.php	(revision 2114)
+++ branches/2.8.x/wb/framework/UpgradeHelper.php	(revision 2115)
@@ -340,7 +340,11 @@
 		return $aRetval;
 	}
 
-
+/**
+ * import info.ini as 'old style' variables
+ * @param string $sIniDir the directory where the info.ini is located
+ * @return array of settings or null on error
+ */
     static public function convInfoIni2InfoPhp($sIniDir)
     {
         $aVarTypePrefixes = array(
@@ -351,7 +355,10 @@
             'snippet'  => 'module'
         );
         $aNeededVars = array_flip(
-            array('directory','name','function','version','platform','author','license','license_terms','description')
+            array(
+                'directory','name','function','version','platform','platform_versions',
+                'platform_minPHP','author','license','license_terms','description'
+            )
         );
         $aRetval = array();
         $sIniDir = rtrim(str_replace('\\', '/', $sIniDir), '/').'/';
@@ -371,6 +378,14 @@
                     $aRetval['platform'] = $ini['platform']['versions'];
                     unset($aNeededVars['platform']);
                 }
+                if (isset($ini['platform']['versions'])) {
+                    $aRetval['platform_versions'] = $ini['platform']['versions'];
+                    unset($aNeededVars['platform_versions']);
+                }
+                if (isset($ini['platform']['minPHP'])) {
+                    $aRetval['platform_minPHP'] = $ini['platform']['minPHP'];
+                    unset($aNeededVars['platform_minPHP']);
+                }
                 if  (sizeof($aNeededVars) > 0) {
                     return null;
                 }
