diff options
author | Moonchild <mcwerewolf@wolfbeast.com> | 2019-04-25 15:08:18 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-25 15:08:18 +0000 |
commit | ace7f20fa76c0a1594ab80d3a07fda92a7edea67 (patch) | |
tree | 813c8c9bfcb690ad4d4d4f18356086c3559d35ee | |
parent | 51af3decb97f7eed3fa92dfddb89be22828a0275 (diff) | |
parent | 2e781c9982821b87caf198e50bb1a714d48c7113 (diff) | |
download | UXP-ace7f20fa76c0a1594ab80d3a07fda92a7edea67.tar UXP-ace7f20fa76c0a1594ab80d3a07fda92a7edea67.tar.gz UXP-ace7f20fa76c0a1594ab80d3a07fda92a7edea67.tar.lz UXP-ace7f20fa76c0a1594ab80d3a07fda92a7edea67.tar.xz UXP-ace7f20fa76c0a1594ab80d3a07fda92a7edea67.zip |
Merge pull request #1054 from adeshkp/patch-11
[minor] Fix a variable name in Basilisk error page
-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; |