diff options
| author | Philipp Schüttlöffel <schuettloeffel@zqs.uni-hannover.de> | 2024-09-24 10:53:31 +0200 |
|---|---|---|
| committer | Philipp Schüttlöffel <schuettloeffel@zqs.uni-hannover.de> | 2024-09-24 10:53:31 +0200 |
| commit | 4459dd7917f4d1c34f40bb68f0e991e9c3d53e4c (patch) | |
| tree | 5c07151ae61276d334e88f6309c30d439a85c12e /lib/classes/helpbar/Helpbar.php | |
| parent | da0022e5c1abbf9825ae76debaabdff7e8623bb4 (diff) | |
| parent | 97a188592c679890a25c37ab78463add76a52ff7 (diff) | |
Merge branch 'main' into issue-3911issue-3911
Diffstat (limited to 'lib/classes/helpbar/Helpbar.php')
| -rw-r--r-- | lib/classes/helpbar/Helpbar.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/classes/helpbar/Helpbar.php b/lib/classes/helpbar/Helpbar.php index cfa98a3..c4abfc4 100644 --- a/lib/classes/helpbar/Helpbar.php +++ b/lib/classes/helpbar/Helpbar.php @@ -253,7 +253,8 @@ class Helpbar extends WidgetContainer // add wiki link and remove it from navigation $this->addLink( _('Weiterführende Hilfe'), - format_help_url(PageLayout::getHelpKeyword()), Icon::create('link-extern', 'info_alt'), + PageLayout::getHelpUrl(), + Icon::create('link-extern', Icon::ROLE_INFO_ALT), '_blank', ['rel' => 'noopener noreferrer'] ); @@ -264,7 +265,7 @@ class Helpbar extends WidgetContainer $template = $GLOBALS['template_factory']->open('helpbar/helpbar'); $template->widgets = $this->widgets; $template->open = $this->open; - $template->tour_data = $tour_data; + $template->tour_data = $tour_data ?? null; $content = $template->render(); } |
