I'm running Umbraco 4.7.1.1 with nForum 1.5. We installed the patch for 1.5 to enable forum admin notifications, and all is well, apart from when someone creates a new topic, the link in the email is incorrect.
I modified that a long time ago so not 100% what I did to fix it but a quick glance at the code makes me think you need to change a line in nForumBaseExtensions.cs. Go to line 479 (could be different line in original source) and replace the URL parameter with forumTopic.Url:
Forum admin notifications
Hi all
I'm running Umbraco 4.7.1.1 with nForum 1.5. We installed the patch for 1.5 to enable forum admin notifications, and all is well, apart from when someone creates a new topic, the link in the email is incorrect.
------------
New post in xyz category
topic text
To view and reply to this forum post, please go to:
http://www.domain/forum/general-discussions/createtopic
------------
so it is linking to the create topic page, rather than the page for the new topic.
Does anyone have a solution to this please?
cheers
Rory
I modified that a long time ago so not 100% what I did to fix it but a quick glance at the code makes me think you need to change a line in nForumBaseExtensions.cs. Go to line 479 (could be different line in original source) and replace the URL parameter with forumTopic.Url:
sb.AppendFormat(library.GetDictionaryItem("DirectLink"), forumTopic.Url);
Cheers Yannick. Looks like the right line number.
Much appreciated.
is working on a reply...