diff options
Diffstat (limited to 'lib/bzpage.js')
-rw-r--r-- | lib/bzpage.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/bzpage.js b/lib/bzpage.js index 2278209..f386868 100644 --- a/lib/bzpage.js +++ b/lib/bzpage.js @@ -418,8 +418,9 @@ BZPage.prototype.addToCommentsDropdown = function addToCommentsDropdown (pkg, cm */ BZPage.prototype.createDeadLink = function createDeadLink (id, text, parent, callback, params, breakBefore, accesskey) { var that = this; - var newAElem = this.doc.createElement("a"); params = util.valToArray(params); + + var newAElem = this.doc.createElement("a"); newAElem.setAttribute("id", id); if (accesskey) { newAElem.setAttribute("accesskey", accesskey); |