Hi!
I want to make the "fck_link.js"-class to create unicode-email-adresses. For that, I changed the function "oParser.CreateEMailUri" where the mail-adress is coded to unicode with my custom function. The result-code shows me <a href="mailto:&#97;&#115......and so on. But after the "href-Block" there is the normal, typed in email which has not been coded to unicode. Can someone tell me, where the mailadress is put together? (which class and which function?)
So the result is for example <a href="mailto:&#97;&#115.....>the@mail.com</a>
and it should be : <a href="mailto:&#97;&#115.....>&#97;&#115.....</a>
Thanks in advance
I want to make the "fck_link.js"-class to create unicode-email-adresses. For that, I changed the function "oParser.CreateEMailUri" where the mail-adress is coded to unicode with my custom function. The result-code shows me <a href="mailto:&#97;&#115......and so on. But after the "href-Block" there is the normal, typed in email which has not been coded to unicode. Can someone tell me, where the mailadress is put together? (which class and which function?)
So the result is for example <a href="mailto:&#97;&#115.....>the@mail.com</a>
and it should be : <a href="mailto:&#97;&#115.....>&#97;&#115.....</a>
Thanks in advance
Re: Unicode-Mail-Adress
ok, again:
I got it now, that the adress is decoded like <a href="&#109;&#97;&#105;&#108;&#116;&#111;&#109;&#101;&#64;&#97;&#100;&#114;&#101;&#115;&#115;&#46;&#99;&#111;&#109;">&#109;&#101;&#64;&#97;&#100;&#114;&#101;&#115;&#115;&#46;&#99;&#111;&#109;</a>
but the problem is, that the user also see the mail-adress like" me@adress.com"
but i want the user to see the "real", typed-in adress and in code-view i want it all to be decoded
Thanks in advance