Skip to content
Snippets Groups Projects
Commit 01ad6cd8 authored by Axel Hahn's avatar Axel Hahn
Browse files

fix help link for settings

parent 769b1519
No related branches found
No related tags found
1 merge request!39V0.19
......@@ -6,7 +6,7 @@ $aHelpUrls = [
'adminapps' => $sDocBase . 'Usage/Admin_backend/Web_apps.html',
'adminlogs' => $sDocBase . 'Usage/Admin_backend/Logs.html',
'adminsessions' => $sDocBase . 'Usage/Admin_backend/Sessions.html',
'adminsettings' => $sDocBase . 'Usage/Admin_backend/Web_users.html',
'adminsettings' => $sDocBase . 'Usage/Admin_backend/Settings.html',
'adminusers' => $sDocBase . 'Usage/Admin_backend/Web_users.html',
'setup' => $sDocBase . 'Usage/User_view/Startpage.html',
......@@ -70,9 +70,9 @@ function addHelplink(): string
$sPage = $_GET['page'] ?? '';
return ($aHelpUrls[$_SERVER['QUERY_STRING']] ?? false)
? ('<span class="helplink"><a href="' . $aHelpUrls[$_SERVER['QUERY_STRING']] . '" target="_blank" class="pure-button">{{ico.help}} {{help}}</a></span>')
? ('<span class="helplink"><a href="' . $aHelpUrls[$_SERVER['QUERY_STRING']] . '" target="_blank" class="pure-button button-help">{{ico.help}} {{help}}</a></span>')
: (($aHelpUrls[$sPage] ?? false)
? '<span class="helplink"><a href="' . $aHelpUrls[$sPage] . '" target="_blank" class="pure-button">{{ico.help}} {{help}}</a></span>'
? '<span class="helplink"><a href="' . $aHelpUrls[$sPage] . '" target="_blank" class="pure-button button-help">{{ico.help}} {{help}}</a></span>'
: ''
)
;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment