diff options
author | Simon Rettberg | 2020-10-23 15:56:56 +0200 |
---|---|---|
committer | Simon Rettberg | 2020-10-23 15:56:56 +0200 |
commit | 09ad25e241134aafb4b384f39bc2a848f0c28332 (patch) | |
tree | 7b7f0a5f257fe37ce95cddd580d3485b66916bef /modules-available/serversetup-bwlp-ipxe/page.inc.php | |
parent | [dozmod] expiredimages: Link to user's actionlog instead of sending mail (diff) | |
download | slx-admin-09ad25e241134aafb4b384f39bc2a848f0c28332.tar.gz slx-admin-09ad25e241134aafb4b384f39bc2a848f0c28332.tar.xz slx-admin-09ad25e241134aafb4b384f39bc2a848f0c28332.zip |
[serversetup-bwlp-ipxe] Add "Edit" link for bootentries in menu editor
Add link to the popup where you select a boot entry for a menu entry
in a menu.
Diffstat (limited to 'modules-available/serversetup-bwlp-ipxe/page.inc.php')
-rw-r--r-- | modules-available/serversetup-bwlp-ipxe/page.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules-available/serversetup-bwlp-ipxe/page.inc.php b/modules-available/serversetup-bwlp-ipxe/page.inc.php index 2f644412..cbfbc5f1 100644 --- a/modules-available/serversetup-bwlp-ipxe/page.inc.php +++ b/modules-available/serversetup-bwlp-ipxe/page.inc.php @@ -420,7 +420,7 @@ class Page_ServerSetup extends Page $menu['entrylist'] = array_merge( Database::queryAll("SELECT entryid, title, hotkey, module, data FROM serversetup_bootentry ORDER BY title ASC"), // Add all menus, so we can link - Database::queryAll("SELECT Concat('menu:', menuid) AS entryid, title FROM serversetup_menu ORDER BY title ASC") + Database::queryAll("SELECT Concat('menu:', menuid) AS entryid, title, 1 AS no_edit FROM serversetup_menu ORDER BY title ASC") ); foreach ($menu['entrylist'] as &$bootentry) { if (!isset($bootentry['data']) || !isset($bootentry['module'])) |