From: hickert Date: Wed, 29 Sep 2010 13:39:56 +0000 (+0000) Subject: Made utc option checkable. X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=9b0a73636e8c3a7a9d37a7caca1ca20c54bb0f97;p=gosa.git Made utc option checkable. git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@19851 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-plugins/goto/admin/systems/goto/Device/InstallRecipe.tpl b/gosa-plugins/goto/admin/systems/goto/Device/InstallRecipe.tpl index 65ea81a69..e4693688e 100644 --- a/gosa-plugins/goto/admin/systems/goto/Device/InstallRecipe.tpl +++ b/gosa-plugins/goto/admin/systems/goto/Device/InstallRecipe.tpl @@ -72,9 +72,10 @@ - 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 64bdd2029..40cdc4289 100644 --- a/gosa-plugins/goto/admin/systems/goto/Device/class_InstallRecipe.inc +++ b/gosa-plugins/goto/admin/systems/goto/Device/class_InstallRecipe.inc @@ -85,6 +85,7 @@ class InstallRecipe extends plugin if(isset($_POST['InstallRecipePosted'])){ plugin::save_object(); $this->kickstartRootEnabled = isset($_POST['kickstartRootEnabled']); + $this->kickstartTimeUTC = isset($_POST['kickstartTimeUTC']); if(isset($_POST['setKickstartRootPasswordHash'])){ @@ -113,6 +114,7 @@ class InstallRecipe extends plugin // if(!$this->kickstartRootEnabled) $this->kickstartRootPasswordHash = ""; $this->kickstartRootEnabled = ($this->kickstartRootEnabled)?'TRUE':'FALSE'; + $this->kickstartTimeUTC = ($this->kickstartTimeUTC)?'TRUE':'FALSE'; plugin::save();
- + +