a couple more comanche conversions

This commit is contained in:
friendica
2013-12-14 13:26:40 -08:00
parent a4624d2979
commit c00f0d4b28
7 changed files with 142 additions and 86 deletions

View File

@@ -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())