MyBB Community Forums

Full Version: pmlog thread subscription PM shows as "deleted user"
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
When a thread subscription PM's a user, the from fields are filled with Deleted User. Shouldnt this be something like Subscription.

How can i change the this?
This PMs get stored with "fromid" 0, wich is equivalent to delted user and subscription messages.
The Plugin coder defined it as delted user, you can see here:
		if(!$log['from_username'])
		{
			$table->construct_cell("{$find_from}<div>{$lang->deleted_user}</div>");
		}
if you like to change this to subscription message just change the lang tag but then messages from deletes users will shown as subscription message.
(2017-04-28, 08:00 AM)broatcast Wrote: [ -> ]This PMs get stored with "fromid" 0, wich is equivalent to delted user and subscription messages.
The Plugin coder defined it as delted user, you can see here:
		if(!$log['from_username'])
		{
			$table->construct_cell("{$find_from}<div>{$lang->deleted_user}</div>");
		}
if you like to change this to subscription message just change the lang tag but then messages from deletes users will shown as subscription message.

ah ok i was searching Capped
Deleted
which is why i didnt find that. 

Im not sure if i want to make subscriptions of deleted users. Crap. Wish the coder thought of that and split them up.

Again thank you for your help
You are not able to split this up, a subscription pm have the same id like a pm from a deleted user.
oh ok