diff --git a/boot.php b/boot.php
index d02ecd344a..330c965f4e 100644
--- a/boot.php
+++ b/boot.php
@@ -2423,7 +2423,13 @@ function get_birthdays() {
);
if($r && count($r)) {
- $o .= '
' . t('Birthdays this week:') . '
';
+ $total = 0;
+ foreach($r as $rr)
+ if(strlen($rr['name']))
+ $total ++;
+
+ $o .= '
' . t('Birthday Reminders') . ' ' . '(' . $total . ')' . '
';
+ $o .= '
' . t('Birthdays this week:') . '
';
$o .= '
' . t("\x28Adjusted for local time\x29") . '
';
$o .= '
';
@@ -2439,7 +2445,7 @@ function get_birthdays() {
. '
' ;
}
- $o .= '
';
+ $o .= '';
}
return $o;