diff options
author | friendica <info@friendica.com> | 2013-12-14 13:26:40 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-12-14 13:26:40 -0800 |
commit | c00f0d4b282f2242b9c2e154a5381029cf0dc812 (patch) | |
tree | 2287d26454fc11f0a65c77d87460e67c0f5e25f6 /mod/message.php | |
parent | a4624d29791af75fea7907caa4c8cf7a1cca90a0 (diff) | |
download | volse-hubzilla-c00f0d4b282f2242b9c2e154a5381029cf0dc812.tar.gz volse-hubzilla-c00f0d4b282f2242b9c2e154a5381029cf0dc812.tar.bz2 volse-hubzilla-c00f0d4b282f2242b9c2e154a5381029cf0dc812.zip |
a couple more comanche conversions
Diffstat (limited to 'mod/message.php')
-rw-r--r-- | mod/message.php | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/mod/message.php b/mod/message.php index b5420e5b3..6a33f1db7 100644 --- a/mod/message.php +++ b/mod/message.php @@ -7,29 +7,6 @@ require_once("include/bbcode.php"); require_once('include/Contact.php'); -function message_aside(&$a) { - - if (! local_user()) - return; - - $a->set_widget('msgaside',replace_macros(get_markup_template('message_side.tpl'), array( - '$tabs'=> array(), - - '$check'=>array( - 'label' => t('Check Mail'), - 'url' => $a->get_baseurl(true) . '/message', - 'sel' => (argv(1) == ''), - ), - '$new'=>array( - 'label' => t('New Message'), - 'url' => $a->get_baseurl(true) . '/message/new', - 'sel'=> (argv(1) == 'new'), - ) - - ))); - -} - function message_post(&$a) { if(! local_user()) |