diff options
author | Mario Vavti <mario@mariovavti.com> | 2015-09-17 19:25:13 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2015-09-17 19:25:13 +0200 |
commit | 1cf404177dc3824096e724308f4e26716b6e2c8d (patch) | |
tree | c9b5886dac9a2cd3bf06c871dab2a5b36e4e26f4 /mod/mail.php | |
parent | 6cd5826d214701071c0ea14a0be16284afc926b4 (diff) | |
download | volse-hubzilla-1cf404177dc3824096e724308f4e26716b6e2c8d.tar.gz volse-hubzilla-1cf404177dc3824096e724308f4e26716b6e2c8d.tar.bz2 volse-hubzilla-1cf404177dc3824096e724308f4e26716b6e2c8d.zip |
quickfix for private messages - needs a lot more work
Diffstat (limited to 'mod/mail.php')
-rw-r--r-- | mod/mail.php | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/mod/mail.php b/mod/mail.php index 152db3231..80d7f477d 100644 --- a/mod/mail.php +++ b/mod/mail.php @@ -125,8 +125,7 @@ function mail_content(&$a) { $tpl = get_markup_template('mail_head.tpl'); $header = replace_macros($tpl, array( - '$messages' => t('Messages'), - '$tab_content' => $tab_content + '$header' => t('Messages'), )); if((argc() == 3) && (argv(1) === 'drop')) { @@ -160,8 +159,6 @@ function mail_content(&$a) { if((argc() > 1) && (argv(1) === 'new')) { - $o .= $header; - $plaintext = true; $tpl = get_markup_template('msg-header.tpl'); |