diff options
author | adeshkp <adeshkp@users.noreply.github.com> | 2019-04-24 23:11:24 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-24 23:11:24 +0530 |
commit | 2e781c9982821b87caf198e50bb1a714d48c7113 (patch) | |
tree | 067a3719018d133907568b9aaa30cf030df3b49f /application/basilisk/base | |
parent | 325b204d2661dafd2720d3e78f47be8038871dbd (diff) | |
download | UXP-2e781c9982821b87caf198e50bb1a714d48c7113.tar UXP-2e781c9982821b87caf198e50bb1a714d48c7113.tar.gz UXP-2e781c9982821b87caf198e50bb1a714d48c7113.tar.lz UXP-2e781c9982821b87caf198e50bb1a714d48c7113.tar.xz UXP-2e781c9982821b87caf198e50bb1a714d48c7113.zip |
[minor] Fix a variable name in Basilisk error page
Related commit: https://github.com/MoonchildProductions/UXP/commit/e313e5e2ec19355988c3d59745c202f4604670d3#diff-115f6bd87bbdaa1f6445547dac684c9c
Diffstat (limited to 'application/basilisk/base')
-rw-r--r-- | application/basilisk/base/content/aboutNetError.xhtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/application/basilisk/base/content/aboutNetError.xhtml b/application/basilisk/base/content/aboutNetError.xhtml index 3296600c8..5ff79ea12 100644 --- a/application/basilisk/base/content/aboutNetError.xhtml +++ b/application/basilisk/base/content/aboutNetError.xhtml @@ -362,7 +362,7 @@ // First, find the index of the <a> tag we care about, being // careful not to use an over-greedy regex. var re = /<a id="cert_domain_link" title="([^"]+)">/; - var result = domainRe.exec(desc); + var result = re.exec(desc); if (!result) return; |