X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=boot.php;h=a9cfb7cac0dfbdf953ebab4818bee3a14ac7a477;hb=cdf2fe859f439a9d3689ea946e23d9aef1fb6cac;hp=574ac86c013799483427d3f5ae5014725d2a0487;hpb=8bb9226471260ad0e2265248d07d2400a5ff9a24;p=friendica.git diff --git a/boot.php b/boot.php index 574ac86c01..a9cfb7cac0 100644 --- a/boot.php +++ b/boot.php @@ -7,9 +7,9 @@ require_once('include/text.php'); require_once("include/pgettext.php"); -define ( 'FRIENDIKA_VERSION', '2.2.1089' ); +define ( 'FRIENDIKA_VERSION', '2.2.1103' ); define ( 'DFRN_PROTOCOL_VERSION', '2.21' ); -define ( 'DB_UPDATE_VERSION', 1084 ); +define ( 'DB_UPDATE_VERSION', 1087 ); define ( 'EOL', "
\r\n" ); define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' ); @@ -674,6 +674,8 @@ function login($register = false) { '$lostlink' => $lostlink )); + call_hooks('login_hook',$o); + return $o; }} @@ -1011,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 .= '
' . $rr['name'] . ' ' . day_translate(datetime_convert('UTC', $a->timezone, $rr['start'], $bd_format)) . (($today) ? ' ' . t('[today]') : '') . '
' ;