Link Parsing for "Reply to Private Message" email different from Forum Menu link

Started by shawn122, September 20, 2006, 05:47:45 AM

Previous topic - Next topic

shawn122

Hi guys!

Once more...my software:
Joomla: 1.0.11
SMF: 1.1 RC3
Bridge: 1.1.6

My problem:

My forum link is as follows:
http://www.mysite.com/index.php?option=com_smf&Itemid=34

However whenever users get a private message and the subsequent emails with a link back to my site so that they can reply back to the private message, the parsed link is slightly different.  It is displayed as:
http://www.mysite.com/index.php?option=com_smf&Itemid=34

The problem lies in the the "&" being parsed in the 2nd link.  I consider this an issue since I created a different template for my the SMF menu and applied it to the orginal forum menu link.  However the parsed link that is sent in the email doesnt call the template that I want...and instead goes to the default template.  Something I dont want!! 

Any information or what I can do to solve this problem is greatly appreciated.
Thanks once again.
SB Creations - http://www.shawnbinda.com

Orstio

Find this in the integrate_outgoing_email function in smf.php:

$message = trim($message);

Add this right after:

$message = un_htmlspecialchars($message);


Advertisement: