MyBB Community Forums

Full Version: Add email link in lang.php file ?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
.
Using following does not work.

$l['redirect_registered_admin_activate'] = "blah blah... <a href='[email protected]'>[email protected]</a>";

How, if possible, to add an email link in the text of a lang.php file
.
Thanks for the reference.

I did try (but posted the wrong example) Dodgy ...

$l['redirect_registered_admin_activate'] = blah blah... <a href="mailto:[email protected]">[email protected]</a>;

But have since learned that as single quote mark ( ' ) should be used instead of a double ( " ) as shown at http://en.wikipedia.org/wiki/Mailto.

Ie...
<a href='mailto:[email protected]'>[email protected]</a>
...works.

(2013-09-21, 12:13 AM)Nathan Malcolm Wrote: [ -> ]See: http://en.wikipedia.org/wiki/Mailto