Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 1857)
+++ branches/2.8.x/CHANGELOG	(revision 1858)
@@ -12,6 +12,8 @@
 ===============================================================================
 
 
+08 Jan-2013 Build 1858 Dietmar Woellbrink (Luisehahne)
+- remove MODULES_UPGRADE_LIST input from saettings
 08 Jan-2013 Build 1857 Dietmar Woellbrink (Luisehahne)
 + add deleted files and images in jqauery
 08 Jan-2013 Build 1856 Dietmar Woellbrink (Luisehahne)
Index: branches/2.8.x/wb/upgrade-script.php
===================================================================
--- branches/2.8.x/wb/upgrade-script.php	(revision 1857)
+++ branches/2.8.x/wb/upgrade-script.php	(revision 1858)
@@ -544,17 +544,6 @@
 
     $aDebugMessage[] = (db_update_key_value( 'settings', $cfg ) ? " $OK<br />" : " $FAIL!<br />");
 
-    /**********************************************************
-     *  - Adding dev_infos to settings table
-     */
-    $aDebugMessage[] = "<span>Adding/updating modules_upgrade_list to settings table</span>";
-    $cfg = array(
-    	'modules_upgrade_list' => (defined('MODULES_UPGRADE_LIST') ? MODULES_UPGRADE_LIST : 'news')
-    );
-
-    $aDebugMessage[] = (db_update_key_value( 'settings', $cfg ) ? " $OK<br />" : " $FAIL!<br />");
-
-
 if($bDebugModus) {
     echo implode(PHP_EOL,$aDebugMessage);
 }
@@ -998,10 +987,8 @@
      * upgrade modules if newer version is available
      * $aModuleList list of proofed modules
      */
-    $sModuleList = 'news,wysiwyg,form';
-    $aModuleList = explode(',', (defined('MODULES_UPGRADE_LIST') ? MODULES_UPGRADE_LIST : $sModuleList));
+    $aModuleList = array('news','wysiwyg','form');
     echo '<h3>Step '.(++$stepID).': Upgrade proofed modules</h3>';
-//	$aModuleList = array('news');
 	foreach($aModuleList as $sModul) {
 		if(file_exists(WB_PATH.'/modules/'.$sModul.'/upgrade.php')) {
 			$currModulVersion = get_modul_version ($sModul, false);
Index: branches/2.8.x/wb/admin/skel/themes/htt/settings.htt
===================================================================
--- branches/2.8.x/wb/admin/skel/themes/htt/settings.htt	(revision 1857)
+++ branches/2.8.x/wb/admin/skel/themes/htt/settings.htt	(revision 1858)
@@ -589,13 +589,6 @@
 		</div>
 
 		<div class="mbox sub-row">
-	 		<label class="setting_name">{TEXT_MODULES_DIRECTORY}:</label>
-			<div class="input" >
-				<input type="text" name="modules_upgrade_list" value="{MODULES_UPGRADE_LIST}" />
-			</div>
-		</div>
-
-		<div class="mbox sub-row">
 	 		<label class="setting_name">{TEXT_PAGE_ICON_DIR}:</label>
 			<div class="input" >
 			<input type="text" id="page_icon_dir" name="page_icon_dir" value="{PAGE_ICON_DIR}" />
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 1857)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 1858)
@@ -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', '1857');
+if(!defined('REVISION')) define('REVISION', '1858');
 if(!defined('SP')) define('SP', '');
Index: branches/2.8.x/wb/admin/settings/save.php
===================================================================
--- branches/2.8.x/wb/admin/settings/save.php	(revision 1857)
+++ branches/2.8.x/wb/admin/settings/save.php	(revision 1858)
@@ -185,7 +185,6 @@
     'rename_files_on_upload',
     'page_spacer',
     'page_icon_dir',
-    'modules_upgrade_list'
     );
 $disallow_in_fields = array(
     'pages_directory',
@@ -205,7 +204,6 @@
     'rename_files_on_upload',
     'page_spacer',
     'page_icon_dir',
-    'modules_upgrade_list'
     );
 
 // Query current settings in the db, then loop through them and update the db with the new value
Index: branches/2.8.x/wb/admin/settings/index.php
===================================================================
--- branches/2.8.x/wb/admin/settings/index.php	(revision 1857)
+++ branches/2.8.x/wb/admin/settings/index.php	(revision 1858)
@@ -36,7 +36,6 @@
 $cfg = array(
 	'wbmail_signature' => defined('WBMAIL_SIGNATURE') ? WBMAIL_SIGNATURE : '',
 	'confirmed_registration' => (defined('CONFIRMED_REGISTRATION') ? CONFIRMED_REGISTRATION : '0'),
-	'modules_upgrade_list' => (defined('MODULES_UPGRADE_LIST') ? MODULES_UPGRADE_LIST : ''),
 	'page_extendet' => (defined('PAGE_EXTENDET') ? PAGE_EXTENDET : 'true'),
 	);
 db_update_key_value( 'settings', $cfg );
@@ -1032,7 +1031,6 @@
 		'PAGES_DIRECTORY' => PAGES_DIRECTORY,
 		'PAGES_READONLY' => $sReadOnly,
 		'PAGES_EDIT_TYPE' => $sPagesEditType,
-		'MODULES_DIRECTORY' => MODULES_UPGRADE_LIST,
 		'PAGE_ICON_DIR'   => PAGE_ICON_DIR,
 		'MEDIA_DIRECTORY' => MEDIA_DIRECTORY,
 		'PAGE_EXTENSION' => PAGE_EXTENSION,
Index: branches/2.8.x/wb/install/save.php
===================================================================
--- branches/2.8.x/wb/install/save.php	(revision 1857)
+++ branches/2.8.x/wb/install/save.php	(revision 1858)
@@ -418,7 +418,6 @@
 	." (58, 'wbmail_signature', ''),"
 	." (59, 'confirmed_registration', '1'),"
 	." (60, 'page_extendet', 'true'),"
-	." (61, 'modules_upgrade_list', 'news,wysiwyg,form'),"
 	." (62, 'system_locked', '0')";
 	if(!$database->query($settings_rows)) { set_error($database->get_error()); }
 
