aboutsummaryrefslogtreecommitdiffstats
path: root/boot.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-03-31 14:46:16 -0700
committerFriendika <info@friendika.com>2011-03-31 14:46:16 -0700
commitd728961cbf5ce3de7de65e37c900666e0f9f7358 (patch)
tree6fb362f08c9bea0a15a7c3451c5df7ebc042c37b /boot.php
parent08032e04536e67dbf488654a0142350690154c57 (diff)
downloadvolse-hubzilla-d728961cbf5ce3de7de65e37c900666e0f9f7358.tar.gz
volse-hubzilla-d728961cbf5ce3de7de65e37c900666e0f9f7358.tar.bz2
volse-hubzilla-d728961cbf5ce3de7de65e37c900666e0f9f7358.zip
translateable time formats (PM & birthdays)
Diffstat (limited to 'boot.php')
-rw-r--r--boot.php6
1 files changed, 2 insertions, 4 deletions
diff --git a/boot.php b/boot.php
index 8a2706252..e32e9a8fa 100644
--- a/boot.php
+++ b/boot.php
@@ -2,7 +2,7 @@
set_time_limit(0);
-define ( 'FRIENDIKA_VERSION', '2.1.934' );
+define ( 'FRIENDIKA_VERSION', '2.1.935' );
define ( 'DFRN_PROTOCOL_VERSION', '2.2' );
define ( 'DB_UPDATE_VERSION', 1045 );
@@ -2405,9 +2405,7 @@ function get_birthdays() {
if(! local_user())
return $o;
- $bd_format = get_config('system','birthday_format');
- if(! $bd_format)
- $bd_format = 'g A l F d' ; // 8 AM Friday January 18
+ $bd_format = t('g A l F d') ; // 8 AM Friday January 18
$r = q("SELECT `event`.*, `event`.`id` AS `eid`, `contact`.* FROM `event`
LEFT JOIN `contact` ON `contact`.`id` = `event`.`cid`