diff --git a/lam/lib/html.inc b/lam/lib/html.inc index b84728f7..f4546b4f 100644 --- a/lam/lib/html.inc +++ b/lam/lib/html.inc @@ -888,6 +888,9 @@ class htmlHelpLink extends htmlElement { } // print link $helpEntry = getHelp($module, $this->helpID, $scope); + if (empty($helpEntry)) { + return array(); + } printHelpLink($helpEntry, $this->helpID, $module, $scope, $this->cssClasses); return array(); }