summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 6398e87)
raw | patch | inline | side by side (parent: 6398e87)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 9 May 2011 07:30:03 +0000 (07:30 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 9 May 2011 07:30:03 +0000 (07:30 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@20789 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-plugins/goto/admin/systems/goto/Device/class_InstallRecipe.inc | patch | blob | history |
diff --git a/gosa-plugins/goto/admin/systems/goto/Device/class_InstallRecipe.inc b/gosa-plugins/goto/admin/systems/goto/Device/class_InstallRecipe.inc
index 2c09fc177c60db7bd24e3bb80b9aba9072846363..8ff537efebd62223fd261e3458a4b860b78d5d44 100644 (file)
public $installKernelPackageList = array();
// System Locale
- public $installSystemLocale = "";
+ public $installSystemLocale = "de_DE.UTF-8";
public $installSystemLocaleList = array();
// Selected NTP Server
public $installPartitionTable = "";
// Keyboard-layout attribute
- public $installKeyboardlayout = "";
+ public $installKeyboardlayout = "de";
public $installKeyboardlayoutList = array();
// Mirror related attribute
$this->installNTPServerList->setListData($this->installNTPServer);
$this->installBootstrapMethod = $this->installationTemplates[$this->installTemplate]['method'];
+ // The selected release is no longer available for the current template
+ if(!in_array($this->installRelease, $this->templateToRelease[$this->installTemplate])){
+ $this->installRelease = key($this->templateToRelease[$this->installTemplate]);
+ }
+
// Reload list of kernel packages and mirrors
if($oldRelease != $this->installRelease){
$this->reloadInstallationKernelPackages();