summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: d86547a)
raw | patch | inline | side by side (parent: d86547a)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 6 May 2011 14:08:32 +0000 (14:08 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 6 May 2011 14:08:32 +0000 (14:08 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@20784 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-plugins/goto/admin/systems/goto/Device/InstallRecipe.tpl | patch | blob | history | |
gosa-plugins/goto/admin/systems/goto/Device/class_InstallRecipe.inc | patch | blob | history |
diff --git a/gosa-plugins/goto/admin/systems/goto/Device/InstallRecipe.tpl b/gosa-plugins/goto/admin/systems/goto/Device/InstallRecipe.tpl
index d6d01de4939626bd3c9bec3cff6c613e89dc85dc..aa8a1d15e8bc65aedb929841b45cea311679c8bc 100644 (file)
<table>
<tr>
- <td><LABEL for="installMirrorDN">{t}Mirror{/t}</LABEL></td>
+ <td><LABEL for="installMirror">{t}Mirror{/t}</LABEL></td>
<td>
- <select name="installMirrorDN" size=1>
- {html_options options=$installMirrorDNList
- selected=$installMirrorDN}
+ <select name="installMirror" size=1>
+ {html_options options=$installMirrorList
+ selected=$installMirror}
</select>
</td>
</tr>
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 bd6a5c07570efde450808d7c08d459e4acc1d2d6..ee8d88fee80cdbe592e07e2e3ebde0b809566adf 100644 (file)
public $installKeyboardlayout = "";
public $installKeyboardlayoutList = array();
- public $installMirrorDN = "";
- public $installMirrorDNList = array();
+ public $installMirror = "";
+ public $installMirrorList = array();
public $objectclasses = array();
public $attributes = array("installRelease", "installTemplate","installKeyboardlayout","installSystemLocale",
- "installTimezone","installTimeUTC","installNTPServer","installMirrorDN",
+ "installTimezone","installTimeUTC","installNTPServer","installMirror",
"installRootEnabled","installRootPasswordHash","installKernelPackage",
"installPartitionTable","installConfigManagement","installBootstrapMethod");
$smarty->assign('timezones', $this->timezones);
$smarty->assign('installKeyboardlayoutList', $this->installKeyboardlayoutList);
$smarty->assign('installKernelPackageList', $this->installKernelPackageList);
- $smarty->assign('installMirrorDNList', $this->installMirrorDNList);
+ $smarty->assign('installMirrorList', $this->installMirrorList);
$smarty->assign('installSystemLocaleList', $this->installSystemLocaleList);
$smarty->assign('installNTPServerList', $this->installNTPServerList->render());
$res = array(
'dc=intranet,dc=gonicus,dc=de' => 'Intranet',
'ou=systems,dc=intranet,dc=gonicus,dc=de' => 'System');
- $this->installMirrorDNList =$res;
+ $this->installMirrorList =$res;
}
"installTimezone" => _("Timezone"),
"installTimeUTC" => _("Time"),
"installNTPServer" => _("NTP-Server"),
- "installMirrorDN" => _("Mirror"),
+ "installMirror" => _("Mirror"),
"installRootEnabled" => _("Root login enabled"),
"installRootPasswordHash" => _("Root password hash"),
"installKernelPackage" => _("Kernel package"),