MyBB Community Forums

Full Version: ieframe.dll error
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
When trying to edit a href links in header template to another address, the link in the header when clicked after publishing adds the a href description text in front of the link in the browser. The browser briefly shows a "ieframe.dll error" before the page cannot be found error shows.

This appears to still occur after reverting to original text for header in MyBB.

Example (full code syntax not shown)

a href="http://www.google.com">Search<a

If this is changed to...

a href="http://www.msn.com">Search<a

The address that is entered in the address bar is now

Searchhttp://www.msn.com

Any ideas what in MyBB is causing this error?
a href="http://www.msn.com">Search<a

should be:

<a href="http://www.msn.com">Search<a>
And,

<a href="http://www.msn.com">Search<a>

should be:

<a href="http://www.msn.com">Search</a>

You forgot the closing tag Big Grin
Well I purposely didn't put the full tag code in the forum.

What was happening is for example if the code was:
<a href="http://www.msn.com">Search</a>

MyBB would change it to this after clicking save.
<a href="Searchhttp://www.msn.com">Search</a>

Any ideas?