Skip to content

Commit

Permalink
Removed unused variables found with parview and updated README
Browse files Browse the repository at this point in the history
  • Loading branch information
mccrodp committed Dec 6, 2014
1 parent 8c9ffd5 commit f5eb0f0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,11 +114,12 @@ DEVELOPMENT AND TEST
-------------------------------------------------------------------------------
Work above required before releasing 1st beta release.
-------------------------------------------------------------------------------
* Threads can be created using comments on a private message, which will be a
thread. A new permission to reply to messages can be created if necessary.
An admin screen can be used to enable or disable threads to turn on/off
replies on all private messages (Reply, Reply All). A tpl.php template will
need to be added for indentation/presentation.
* Threads can be created using entity reference field on a private message,
which reference the message being replied to. A new permission to reply to
messages can be created if necessary. An admin screen can be used to enable
or disable threads to turn on/off replies on all private messages (Reply,
Reply All). A tpl.php template and perhaps a css file will need to be added
for indentation / presentation.
* Flag module on user entity to block/unblock users from messaging them
* Flag module on message entity to show/hide messages from users own display
* Integrate with rolereference module or similar to provide sending to users
Expand Down
2 changes: 1 addition & 1 deletion message_private.module
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ function message_private_menu_local_tasks_alter(&$data, $router_item, $root_path
break;
case 'message/%':
// Add a Messages tab to the private_message Message entities.
$message = menu_get_object($type = 'message', $position = 1, $router_item['href']);
$message = menu_get_object('message', 1, $router_item['href']);
if(isset($message->type) && $message->type == 'private_message') {
$item = menu_get_item('user/' . $user->uid . '/messages');
$item['title'] = t('Messages');
Expand Down

0 comments on commit f5eb0f0

Please sign in to comment.