MyBB Community Forums

Full Version: PM Issue
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
actually the plugin itself was coded to take care of the points for self PM

~/core/hooks.php (around line 777)
if($mybb->user['uid'] == $pmhandler->data['toid'])
			return;

change above code segment like below and check by sending self PM
if($mybb->user['uid'] == $pmhandler->pm_insert_data['toid'])
			return;
(2014-08-31, 03:05 PM).m. Wrote: [ -> ]which plugin you are using for ficons ? post test url of a forum where someone can check the referred issue

(2014-09-01, 04:45 AM).m. Wrote: [ -> ]actually the plugin itself was coded to take care of the points for self PM

~/core/hooks.php (around line 777)
if($mybb->user['uid'] == $pmhandler->data['toid'])
			return;

change above code segment like below and check by sending self PM
if($mybb->user['uid'] == $pmhandler->pm_insert_data['toid'])
			return;

You sir are a legend - thank you so much. Smile
Pages: 1 2