- Issue created by @sagesolutions
When viewing a thread between 2 users as an administrator, the load previous button doesn't load previous messages.
The ajaxCallback currently only checks $this->currentUser->hasPermission('use private messaging system')
and runs the following
case 'get_old_messages':
$this->getOldPrivateMessages($response);
This eventually calls getPreviousMessages() function and checks if the current user is in the thread to load more. Instead, we should have a check for $account->hasPermission('administer private messages')
and load older messages.
I think using the checkAccess() function in the PrivateMessageThreadAccessControlHandler.php for the ajaxCallback would be best, then we can remove the $private_message_thread->isMember($this->currentUser->id())
check inside the getPreviousMessages() function.
Alternatively, check permissions in the ajaxCallback and call a new/different function in the get_old_messages
which doesn't check permissions for users who have the 'administer private messages' permission.
Implement
None
None
None
Active
3.0
Code