diff options
Diffstat (limited to 'mod/mail.php')
-rw-r--r-- | mod/mail.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mod/mail.php b/mod/mail.php index 2e7e3699a..75e8f4dd5 100644 --- a/mod/mail.php +++ b/mod/mail.php @@ -313,10 +313,10 @@ function mail_content(&$a) { 'id' => $message['id'], 'from_name' => $message['from']['xchan_name'], 'from_url' => chanlink_hash($message['from_xchan']), - 'from_photo' => $message['from']['xchan_photo_m'], + 'from_photo' => $message['from']['xchan_photo_s'], 'to_name' => $message['to']['xchan_name'], 'to_url' => chanlink_hash($message['to_xchan']), - 'to_photo' => $message['to']['xchan_photo_m'], + 'to_photo' => $message['to']['xchan_photo_s'], 'subject' => $message['title'], 'body' => smilies(bbcode($message['body']) . $s), 'delete' => t('Delete message'), @@ -353,7 +353,7 @@ function mail_content(&$a) { '$showinputs' => '', '$subject' => t('Subject:'), '$subjtxt' => $message['title'], - '$readonly' => ' readonly="readonly" style="background: #BBBBBB;" ', + '$readonly' => 'readonly="readonly"', '$yourmessage' => t('Your message:'), '$text' => '', '$select' => $select, |