From 3811923c14b5a2be88104ea8069d0d0bb3d9800a Mon Sep 17 00:00:00 2001
From: Friendika <info@friendika.com>
Date: Sun, 16 Jan 2011 16:40:09 -0800
Subject: [PATCH] put birthday reminders on default network page, add smileys
 to private mail

---
 mod/message.php | 2 +-
 mod/network.php | 4 ++++
 mod/profile.php | 2 +-
 3 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/mod/message.php b/mod/message.php
index 251b5a4149..9cc2e2826c 100644
--- a/mod/message.php
+++ b/mod/message.php
@@ -270,7 +270,7 @@ function message_content(&$a) {
 				'$sparkle' => $sparkle,
 				'$from_photo' => $message['from-photo'],
 				'$subject' => $message['title'],
-				'$body' => bbcode($message['body']),
+				'$body' => smilies(bbcode($message['body'])),
 				'$delete' => t('Delete message'),
 				'$to_name' => $message['name'],
 				'$date' => datetime_convert('UTC',date_default_timezone_get(),$message['created'],'D, d M Y - g:i A')
diff --git a/mod/network.php b/mod/network.php
index 08607fa18e..5073b8a61d 100644
--- a/mod/network.php
+++ b/mod/network.php
@@ -115,6 +115,10 @@ function network_content(&$a, $update = 0) {
 		$o = '<h4>' . t('Group: ') . $r[0]['name'] . '</h4>' . $o;
 	}
 
+	if((! $group) && (! $update))
+		$o .= get_birthdays();
+
+
 	$r = q("SELECT COUNT(*) AS `total`
 		FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
 		WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
diff --git a/mod/profile.php b/mod/profile.php
index 9b8388177d..bcd2b64e36 100644
--- a/mod/profile.php
+++ b/mod/profile.php
@@ -230,7 +230,7 @@ function profile_content(&$a, $update = 0) {
 
 
 	if($is_owner && ! $update)
-			$o .= get_birthdays();
+		$o .= get_birthdays();
 
 	$cmnt_tpl = load_view_file('view/comment_item.tpl');
 
-- 
2.39.5