Skip to content

Commit

Permalink
Merge pull request #782 from johnhenley/issues/dev81-testing
Browse files Browse the repository at this point in the history
FIX: Reply not posting (correct) ReplyId to Process Queue :(
  • Loading branch information
johnhenley committed May 6, 2024
2 parents 85e6f31 + 3dab36b commit 0b2b5eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dnn.CommunityForums/controls/af_post.ascx.cs
Original file line number Diff line number Diff line change
Expand Up @@ -979,7 +979,7 @@ private void SaveReply()
}
if (!_isEdit)
{
DotNetNuke.Modules.ActiveForums.Controllers.ReplyController.QueueApprovedReplyAfterAction(PortalId, TabId, ModuleId, _fi.ForumGroupId, ForumId, TopicId, ReplyId, ri.Content.AuthorId);
DotNetNuke.Modules.ActiveForums.Controllers.ReplyController.QueueApprovedReplyAfterAction(PortalId, TabId, ModuleId, _fi.ForumGroupId, ForumId, TopicId, tmpReplyId, ri.Content.AuthorId);

var ctlUtils = new ControlUtils();
var fullURL = ctlUtils.BuildUrl(TabId, ForumModuleId, ForumInfo.ForumGroup.PrefixURL, ForumInfo.PrefixURL, ForumInfo.ForumGroupId, ForumInfo.ForumID, TopicId, ri.Topic.TopicUrl, -1, -1, string.Empty, 1, tmpReplyId, SocialGroupId);
Expand Down

0 comments on commit 0b2b5eb

Please sign in to comment.