Active
Project:
Messaging
Version:
6.x-4.0-beta8
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
3 Jun 2011 at 13:44 UTC
Updated:
15 Oct 2011 at 23:22 UTC
Hi all, I note that if you install Privatemsg module and Simple messiging submodule together, path of the Privatemsg module override the path of Simple messiging submodule. So you can see only tab Messaging on user account that will be point to inbox of Privatemsg and you will not see tab Messaging of the Simple messaging submodule.
If you want both sending methods enabled you must replace in the Simple messaging submodule:
function messaging_simple_menu() {
$items['user/%user/messages'] = array(
'type' => MENU_LOCAL_TASK,
'title' => 'Messages',
with
function messaging_simple_menu() {
$items['user/%user/simplemessages'] = array(
'type' => MENU_LOCAL_TASK,
'title' => 'Simple messages',
and replace
l($message->subject, 'user/' . $account->uid . '/messages/view/' . $message->msid),
with
l($message->subject, 'user/' . $account->uid . '/simplemessages/view/' . $message->msid),
Comments
Comment #1
finex commentedI'm able to reproduce this bug using Private Messages 6.x-1.5 and Messaging 6.x-2.4 (with Notifications 6.x-2.3)