From e58654fc52d545dd0d5273c48ef9820c1862017d Mon Sep 17 00:00:00 2001 From: "cbiesinger%web.de" Date: Mon, 29 Apr 2002 19:22:58 +0000 Subject: [PATCH] bug 91876 patch by walk84@yahoo.com r=biesi sr=alecf strict warning in help.js --- extensions/help/resources/content/help.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/help/resources/content/help.js b/extensions/help/resources/content/help.js index 96c784b88bbd..b76f4bcbf536 100644 --- a/extensions/help/resources/content/help.js +++ b/extensions/help/resources/content/help.js @@ -232,7 +232,7 @@ function getLink(ID) { // We have one possible source for an ID for each datasource in the composite datasource. // The first ID which matches is returned. var tocTree = document.getElementById("help-toc-tree"); - tocDS = tocTree.database; + var tocDS = tocTree.database; if (tocDS == null) return null; var tocDatasources = tocTree.getAttribute("datasources");