MyBB Community Forums

Full Version: [F] [WOL] - do_addsubscription, removesubscriptions [C-StefanT]
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
In the functions_online.php are 2 mistakes of the usercp2. At first there is a missing "s" by one of the 2 "removesubscription" and the "do_addsubscription" is totally missing. The reaction to this should be clear: In the WOL it's shown as "Unknown Location"

			elseif($parameters['action'] == "addsubscription" || $parameters['action'] == "removesubscription" || $parameters['action'] == "removesubscription")
			{
				$user_activity['activity'] = "usercp2_subscriptions";
			}

Should be

			elseif($parameters['action'] == "addsubscription" || $parameters['action'] == "do_addsubscription" || $parameters['action'] == "removesubscription" || $parameters['action'] == "removesubscriptions")
			{
				$user_activity['activity'] = "usercp2_subscriptions";
			}
Thank you for your bug report.

This bug has been fixed in our internal code repository. Please note that the problem will not be fixed here until these forums are updated.

With regards,
MyBB Group