summaryrefslogtreecommitdiffstats
path: root/modules-available/serversetup-bwlp-ipxe/api.inc.php
diff options
context:
space:
mode:
authorSimon Rettberg2020-08-28 13:28:00 +0200
committerSimon Rettberg2020-08-28 13:28:00 +0200
commit675040a7e25118a92670c73804a41053a4d32947 (patch)
tree6b53f4210092e8d0b3f9552a3e9a21d67469685c /modules-available/serversetup-bwlp-ipxe/api.inc.php
parent[dnbd3] Make poxy image list sortable (stupidtable) (diff)
downloadslx-admin-675040a7e25118a92670c73804a41053a4d32947.tar.gz
slx-admin-675040a7e25118a92670c73804a41053a4d32947.tar.xz
slx-admin-675040a7e25118a92670c73804a41053a4d32947.zip
[serversetup-bwlp-ipxe] Fix UTF-8 fix, fix gaps not being displayed
Diffstat (limited to 'modules-available/serversetup-bwlp-ipxe/api.inc.php')
-rw-r--r--modules-available/serversetup-bwlp-ipxe/api.inc.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/modules-available/serversetup-bwlp-ipxe/api.inc.php b/modules-available/serversetup-bwlp-ipxe/api.inc.php
index dcfa7774..7575ad55 100644
--- a/modules-available/serversetup-bwlp-ipxe/api.inc.php
+++ b/modules-available/serversetup-bwlp-ipxe/api.inc.php
@@ -7,7 +7,10 @@
} else {
$builder = new ScriptBuilderIpxe();
}
- $bootEntryId = Util::cleanUtf8(Request::get('beid', false, 'string'));
+ $bootEntryId = Request::get('beid', false, 'string');
+ if ($bootEntryId !== false) {
+ $bootEntryId = Util::cleanUtf8($bootEntryId);
+ }
$entryId = Request::get('entryid', false, 'int');
if ($bootEntryId !== false) {
$entry = BootEntry::fromDatabaseId($bootEntryId);