diff options
Diffstat (limited to 'admin/WebConsole/jscripts')
-rw-r--r-- | admin/WebConsole/jscripts/boot_grub4dos.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/admin/WebConsole/jscripts/boot_grub4dos.js b/admin/WebConsole/jscripts/boot_grub4dos.js index b4f6f9c3..842501b5 100644 --- a/admin/WebConsole/jscripts/boot_grub4dos.js +++ b/admin/WebConsole/jscripts/boot_grub4dos.js @@ -63,8 +63,9 @@ function allSelect() var input = document.getElementsByTagName('select'); for(var i=0; i<input.length; i++){ - label = input[i].parentNode.id; + // La plantilla 00unknown no existe, no se incluye en el listado + if (label === "00unknown") continue; for (j=0;j<input[i].length;j++) { |