diff options
author | Thomas <rat@rlyeh-military-affairs> | 2012-03-06 23:56:37 +0000 |
---|---|---|
committer | Thomas <rat@rlyeh-military-affairs> | 2012-03-06 23:56:37 +0000 |
commit | dadf80f64479792be85c7026fe1e3c5440066211 (patch) | |
tree | 9bb9f515c571d361b9e16f6ef6a308f4ffac5ed2 /include | |
parent | 22624917e03b0ea90de19b0808c5435aa04d3613 (diff) | |
parent | 05a52b2660a879a97d511b180e26fe12310d0464 (diff) | |
download | volse-hubzilla-dadf80f64479792be85c7026fe1e3c5440066211.tar.gz volse-hubzilla-dadf80f64479792be85c7026fe1e3c5440066211.tar.bz2 volse-hubzilla-dadf80f64479792be85c7026fe1e3c5440066211.zip |
Merge remote-tracking branch 'upstream/master'
Conflicts:
images/smiley-beard.png
Diffstat (limited to 'include')
-rwxr-xr-x | include/conversation.php | 2 | ||||
-rwxr-xr-x | include/nav.php | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/include/conversation.php b/include/conversation.php index f4740688c..b458923e5 100755 --- a/include/conversation.php +++ b/include/conversation.php @@ -217,7 +217,7 @@ function conversation(&$a, $items, $mode, $update, $preview = false) { if($update) $return_url = $_SESSION['return_url']; else - $return_url = $_SESSION['return_url'] = $a->cmd; + $return_url = $_SESSION['return_url'] = $a->query_string; load_contact_links(local_user()); diff --git a/include/nav.php b/include/nav.php index 511ca07fc..aadfa82fd 100755 --- a/include/nav.php +++ b/include/nav.php @@ -122,6 +122,9 @@ function nav(&$a) { } $nav['messages'] = array('message', t('Messages'), "", t('Private mail')); + $nav['messages']['inbox'] = array('message', t('Inbox'), "", t('Inbox')); + $nav['messages']['outbox']= array('message/sent', t('Outbox'), "", t('Outbox')); + $nav['messages']['new'] = array('message/new', t('New Message'), "", t('New Message')); if(is_array($a->identities) && count($a->identities) > 1) { $nav['manage'] = array('manage', t('Manage'), "", t('Manage other pages')); |