diff options
author | Roberto Hueso Gómez <rhueso@soleta.eu> | 2020-08-13 14:02:37 +0200 |
---|---|---|
committer | OpenGnSys Support Team <soporte-og@soleta.eu> | 2020-08-14 12:59:17 +0200 |
commit | 3aadac3b9b8412ac91095ef8586605fe3da0d8b7 (patch) | |
tree | 4e8a4f7cf419b316eed79da8c695c20b61e397dc /admin/WebConsole/jscripts/boot_grub4dos.js | |
parent | 179e1b1d53ef3d6c964af445c66d423e56cf76c1 (diff) |
#980 Update POST /mode to the new ogServer API
This patch selects the machines whose modes need to be changed using the
client's IP rather than their scope names.
Diffstat (limited to 'admin/WebConsole/jscripts/boot_grub4dos.js')
-rw-r--r-- | admin/WebConsole/jscripts/boot_grub4dos.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/WebConsole/jscripts/boot_grub4dos.js b/admin/WebConsole/jscripts/boot_grub4dos.js index e7cd8359..3b91fd72 100644 --- a/admin/WebConsole/jscripts/boot_grub4dos.js +++ b/admin/WebConsole/jscripts/boot_grub4dos.js @@ -69,7 +69,7 @@ function allSelect() parm = parm.replace(patron,''); for (j=0;j<input[i].length;j++) { - saveString = saveString + parm + '|' + input[i].options[j].text + ';'; + saveString = saveString + parm + '|' + input[i].options[j].value + ';'; } } document.forms[0].listOfItems.value = saveString; |