Hello,
I found a bug in mod_uddeim.
When using dhtml boxes(floating and regular) the link you get to view your inbox isn't right.
The link contains 2 times my domain.
It could have to do with the fact that my joomla installation isn't in the root directory of my site. So I don't know if the problem also occurs when your joomla installation is in the home directory. Maybe someone could verify this.
You can find a fix below:
Find on line 299:
[code:1]$link = '<a href="'.sefRelToAbs($pms_link).'"><div style="text-align: justify; padding: 2px 5px; font-size: 13px; font-family: Arial; width: 250px; background-color: #FFFFFF; color: #000000;">'.$message.'</div></a>';[/code:1]
Replace with:
[code:1]$link = '<a href="' .$pms_link. '"><div style="text-align: justify; padding: 2px 5px; font-size: 13px; font-family: Arial; width: 250px; background-color: #FFFFFF; color: #000000;">'.$message.'</div></a>';[/code:1]
Find on line 321:
[code:1]$link = "<a href='".sefRelToAbs($pms_link)."'>".$message."</a>";[/code:1]
Replace with:
[code:1]$link = "<a href='$pms_link'>".$message."</a>";[/code:1]
from both links sefreltoabs should be removed. $pms_link already has sefreltoabs used so you shouldn't use it again.
Post edited by: slabbi, at: 2008/02/06 21:50
Best Regards
Machiel
CB tester