aboutsummaryrefslogtreecommitdiffstats
path: root/boot.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-09-09 16:22:32 -0700
committerFriendika <info@friendika.com>2011-09-09 16:22:32 -0700
commitd7a2ab9c1f34b8a20d63b275d308601b7309d9b8 (patch)
treeeee1e9846bac7cd8c897cdd2500ed2fba872d634 /boot.php
parentf5c9de19d506ebadf09059f1c72d190ff98a9cdf (diff)
downloadvolse-hubzilla-d7a2ab9c1f34b8a20d63b275d308601b7309d9b8.tar.gz
volse-hubzilla-d7a2ab9c1f34b8a20d63b275d308601b7309d9b8.tar.bz2
volse-hubzilla-d7a2ab9c1f34b8a20d63b275d308601b7309d9b8.zip
send profile visits to 'redir' window
Diffstat (limited to 'boot.php')
-rw-r--r--boot.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/boot.php b/boot.php
index e403dfc8e..b159ef073 100644
--- a/boot.php
+++ b/boot.php
@@ -7,7 +7,7 @@ require_once('include/text.php');
require_once("include/pgettext.php");
-define ( 'FRIENDIKA_VERSION', '2.2.1097' );
+define ( 'FRIENDIKA_VERSION', '2.2.1098' );
define ( 'DFRN_PROTOCOL_VERSION', '2.21' );
define ( 'DB_UPDATE_VERSION', 1087 );
@@ -1013,7 +1013,7 @@ function get_birthdays() {
$now = strtotime('now');
$today = (((strtotime($rr['start'] . ' +00:00') < $now) && (strtotime($rr['finish'] . ' +00:00') > $now)) ? true : false);
- $o .= '<div class="birthday-list" id="birthday-' . $rr['eid'] . '"><a class="sparkle" href="'
+ $o .= '<div class="birthday-list" id="birthday-' . $rr['eid'] . '"><a class="sparkle" target="redir" href="'
. $a->get_baseurl() . '/redir/' . $rr['cid'] . '">' . $rr['name'] . '</a> '
. day_translate(datetime_convert('UTC', $a->timezone, $rr['start'], $bd_format)) . (($today) ? ' ' . t('[today]') : '')
. '</div>' ;