diff options
author | Friendika <info@friendika.com> | 2011-01-16 17:56:26 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-01-16 17:56:26 -0800 |
commit | 2e0a3e06938f159ebe3729a8d488de928e3230a5 (patch) | |
tree | b7a2296f8fcf66109fd095cc9162aaf3df8a8e1e /boot.php | |
parent | 3811923c14b5a2be88104ea8069d0d0bb3d9800a (diff) | |
download | volse-hubzilla-2e0a3e06938f159ebe3729a8d488de928e3230a5.tar.gz volse-hubzilla-2e0a3e06938f159ebe3729a8d488de928e3230a5.tar.bz2 volse-hubzilla-2e0a3e06938f159ebe3729a8d488de928e3230a5.zip |
birthday notifications: missing div close
Diffstat (limited to 'boot.php')
-rw-r--r-- | boot.php | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2168,7 +2168,8 @@ function get_birthdays() { $o .= '<div class="birthday-list" id="birthday-' . $rr['eid'] . '"><a class="sparkle" href="' . $a->get_baseurl() . '/redir/' . $rr['cid'] . '">' . $rr['name'] . '</a> ' - . day_translate(datetime_convert('UTC', $a->timezone, $rr['start'], $bd_format)) . (($today) ? ' ' . t('[today]') : '') ; + . day_translate(datetime_convert('UTC', $a->timezone, $rr['start'], $bd_format)) . (($today) ? ' ' . t('[today]') : '') + . '</div>' ; } $o .= '</div>'; |