Forum unsubscribe link doesn't work

This is the place to report bugs and get support. When posting in this forum, please always provide as much detail as possible.

Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum, do not report it as a bug.

This is the place to report bugs and get support

When posting in this forum, please try to provide as many relevant details as possible. Particularly the following:

  • What operating system were you running when the bug appeared?
  • What database platform is your site using?
  • What version of mojoPortal are you running?
  • What version of .NET do you use?
  • What steps are necessary to reproduce the issue? Compare expected results vs actual results.
Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum.
This thread is closed to new posts. You must sign in to post in the forums.
11/21/2013 12:51:51 PM
Gravatar
Total Posts 537
feet planted firmly on the ground

Forum unsubscribe link doesn't work

I accidentally clicked the unsubscribe link in a forum email notification. The site opened and informed me I would not longer receive notifications "Unsubscribe completed! You should not receive any more notifications for new threads in the requested forum.".

I went to the forum page to renew my subscription, and found that I was still subscribed anyway.

v2.4.0.0. on MSSQL

Shared sites mode (perhaps relevant?)

11/22/2013 11:06:48 AM
Gravatar
Total Posts 18439

Re: Forum unsubscribe link doesn't work

Hi Crispin,

I confirm this as a bug. I just fixed it in my copy so it will be fixed in the next release. You can solve it immediately by running this sql script:

ALTER PROCEDURE [dbo].[mp_ForumSubscriptions_Unsub]

/*
Author:                Joe Audette
Created:            2013-08-17
Last Modified:        2013-11-22

*/

@SubGuid uniqueidentifier,
@CurrentUtc datetime

AS

UPDATE        [dbo].mp_ForumSubscriptions

SET            UnSubscribeDate = COALESCE(@CurrentUtc, getutcdate())

WHERE        SubGuid = @SubGuid        

GO

 

Thanks,

Joe

You must sign in to post in the forums. This thread is closed to new posts.