aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-12-21 23:47:44 -0800
committerfriendica <info@friendica.com>2013-12-21 23:47:44 -0800
commitd32bbaf599c77aa415ee403a896b77f091f0e9fc (patch)
tree6f06776f0df41da52ab8242cf08438804952f805 /include
parentaa312f72bf48f3ffeb62606541b39e5243ce819e (diff)
downloadvolse-hubzilla-d32bbaf599c77aa415ee403a896b77f091f0e9fc.tar.gz
volse-hubzilla-d32bbaf599c77aa415ee403a896b77f091f0e9fc.tar.bz2
volse-hubzilla-d32bbaf599c77aa415ee403a896b77f091f0e9fc.zip
split private messages into two modules - "message" is just for message lists, "mail" is for reading and writing conversations. This is so we can Comanchify it cleanly.
Diffstat (limited to 'include')
-rw-r--r--include/conversation.php2
-rw-r--r--include/dir_fns.php4
-rw-r--r--include/enotify.php4
-rw-r--r--include/nav.php2
-rw-r--r--include/widgets.php2
5 files changed, 7 insertions, 7 deletions
diff --git a/include/conversation.php b/include/conversation.php
index 2ba3948bf..0bb13a17e 100644
--- a/include/conversation.php
+++ b/include/conversation.php
@@ -908,7 +908,7 @@ function item_photo_menu($item){
}
$profile_link = z_root() . "/chanview/?f=&hash=" . $item['author_xchan'];
- $pm_url = $a->get_baseurl($ssl_state) . '/message/new/?f=&hash=' . $item['author_xchan'];
+ $pm_url = $a->get_baseurl($ssl_state) . '/mail/new/?f=&hash=' . $item['author_xchan'];
if($a->contacts && array_key_exists($item['author_xchan'],$a->contacts))
$contact = $a->contacts[$item['author_xchan']];
diff --git a/include/dir_fns.php b/include/dir_fns.php
index 02e8186b7..823763e63 100644
--- a/include/dir_fns.php
+++ b/include/dir_fns.php
@@ -22,8 +22,8 @@ function dir_sort_links() {
function dir_safe_mode() {
$observer = get_observer_hash();
-if (! $observer)
- return;
+ if (! $observer)
+ return;
if ($observer)
$safe_mode = get_xconfig($observer,'directory','safe_mode');
if($safe_mode === '0')
diff --git a/include/enotify.php b/include/enotify.php
index 1ab6e7dfb..49d690511 100644
--- a/include/enotify.php
+++ b/include/enotify.php
@@ -86,8 +86,8 @@ function notification($params) {
$preamble = sprintf( t('%1$s, %2$s sent you a new private message at %3$s.'),$recip['channel_name'], $sender['xchan_name'],$sitename);
$epreamble = sprintf( t('%1$s sent you %2$s.'),'[zrl=' . $sender['xchan_url'] . ']' . $sender['xchan_name'] . '[/zrl]', '[zrl=$itemlink]' . t('a private message') . '[/zrl]');
$sitelink = t('Please visit %s to view and/or reply to your private messages.');
- $tsitelink = sprintf( $sitelink, $siteurl . '/message/' . $params['item']['id'] );
- $hsitelink = sprintf( $sitelink, '<a href="' . $siteurl . '/message/' . $params['item']['id'] . '">' . $sitename . '</a>');
+ $tsitelink = sprintf( $sitelink, $siteurl . '/mail/' . $params['item']['id'] );
+ $hsitelink = sprintf( $sitelink, '<a href="' . $siteurl . '/mail/' . $params['item']['id'] . '">' . $sitename . '</a>');
$itemlink = $siteurl . '/message/' . $params['item']['id'];
}
diff --git a/include/nav.php b/include/nav.php
index 7e99c782e..008899c47 100644
--- a/include/nav.php
+++ b/include/nav.php
@@ -165,7 +165,7 @@ EOT;
$nav['messages']['mark'] = array('', t('Mark all private messages seen'), '','');
$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'));
+ $nav['messages']['new'] = array('mail/new', t('New Message'), "", t('New Message'));
$nav['all_events'] = array('events', t('Events'), "", t('Event Calendar'));
diff --git a/include/widgets.php b/include/widgets.php
index 5e2285de7..d6ef9ec07 100644
--- a/include/widgets.php
+++ b/include/widgets.php
@@ -507,7 +507,7 @@ function widget_mailmenu($arr) {
),
'$new'=>array(
'label' => t('New Message'),
- 'url' => $a->get_baseurl(true) . '/message/new',
+ 'url' => $a->get_baseurl(true) . '/mail/new',
'sel'=> (argv(1) == 'new'),
)