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

finex’s picture

I'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)