aboutsummaryrefslogtreecommitdiffstats
path: root/boot.php
diff options
context:
space:
mode:
authorTobias Diekershoff <tobias.diekershoff@gmx.net>2011-03-17 07:08:48 +0100
committerTobias Diekershoff <tobias.diekershoff@gmx.net>2011-03-17 07:08:48 +0100
commitf4f5095e19badcc85453182b86bff97f57228257 (patch)
treeaf391e8f809c3ab7ae183c72a364ba09fd16702e /boot.php
parent0c16d033efd4ee878ab94318e7980d373ad3994d (diff)
parentb3050d3bc8fc812f0579982e1c866ab07499e0a8 (diff)
downloadvolse-hubzilla-f4f5095e19badcc85453182b86bff97f57228257.tar.gz
volse-hubzilla-f4f5095e19badcc85453182b86bff97f57228257.tar.bz2
volse-hubzilla-f4f5095e19badcc85453182b86bff97f57228257.zip
Merge branch 'master' of git://github.com/friendika/friendika
Diffstat (limited to 'boot.php')
-rw-r--r--boot.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/boot.php b/boot.php
index b03221bf8..d02ecd344 100644
--- a/boot.php
+++ b/boot.php
@@ -2,7 +2,7 @@
set_time_limit(0);
-define ( 'FRIENDIKA_VERSION', '2.1.919' );
+define ( 'FRIENDIKA_VERSION', '2.1.920' );
define ( 'DFRN_PROTOCOL_VERSION', '2.1' );
define ( 'DB_UPDATE_VERSION', 1043 );
@@ -2428,6 +2428,8 @@ function get_birthdays() {
$o .= '<div id="birthday-title-end"></div>';
foreach($r as $rr) {
+ if(! strlen($rr['name']))
+ continue;
$now = strtotime('now');
$today = (((strtotime($rr['start'] . ' +00:00') < $now) && (strtotime($rr['finish'] . ' +00:00') > $now)) ? true : false);