diff options
Diffstat (limited to 'mod/messages/read.php')
-rw-r--r-- | mod/messages/read.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/messages/read.php b/mod/messages/read.php index 47d9b45dc..c5d1d4941 100644 --- a/mod/messages/read.php +++ b/mod/messages/read.php @@ -20,9 +20,9 @@ $title = $message->title; $inbox = false; if ($page_owner->getGUID() == $message->toId) { $inbox = true; - elgg_push_breadcrumb(elgg_echo('messages:inbox'), 'pg/messages/inbox/' . $page_owner->username); + elgg_push_breadcrumb(elgg_echo('messages:inbox'), 'messages/inbox/' . $page_owner->username); } else { - elgg_push_breadcrumb(elgg_echo('messages:sent'), 'pg/messages/sent/' . $page_owner->username); + elgg_push_breadcrumb(elgg_echo('messages:sent'), 'messages/sent/' . $page_owner->username); } elgg_push_breadcrumb($title); |