ensure all new users get a timezone. We'll use UTC until they choose otherwise.

This commit is contained in:
friendica 2012-03-31 16:08:40 -07:00
parent 53f799f2bc
commit 2147e0a71f
2 changed files with 6 additions and 2 deletions

View file

@ -1313,8 +1313,12 @@ function feed_birthday($uid,$tz) {
*
*/
$birthday = '';
if(! strlen($tz))
$tz = 'UTC';
$p = q("SELECT `dob` FROM `profile` WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
intval($uid)
);