Posted by ednique on September 21, 2006 at 9:02pm
Jump to:
| Project: | SpamSpan filter |
| Version: | 4.7.x-1.x-dev |
| Component: | Code |
| Category: | bug report |
| Priority: | normal |
| Assigned: | lakka |
| Status: | closed (fixed) |
Issue Summary
In Internet Explorer
Javascript error saying "undefined" is empty or not an object
when nice menu and content with email is used
Comments
#1
I just ran into this problem a few minutes ago. Fortunately it's a simple fix. A wee little typo in spamspan.js
The 2nd line of getElementsByClass() needs to be changed from
if (scope == null) node = document;
to
if (scope == null) scope = document;
One of these days I need to learn how to submit a proper patch.
#2
#3