]> git.mxchange.org Git - friendica.git/commitdiff
ensure all new users get a timezone. We'll use UTC until they choose otherwise.
authorfriendica <info@friendica.com>
Sat, 31 Mar 2012 23:08:40 +0000 (16:08 -0700)
committerfriendica <info@friendica.com>
Sat, 31 Mar 2012 23:08:40 +0000 (16:08 -0700)
boot.php
mod/register.php

index 6309a5f9b024cbf41fa11bfa5b41dcac9508b528..bdd8d4f962e3b21f8b7c0e219448567bcfedf097 100755 (executable)
--- a/boot.php
+++ b/boot.php
@@ -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)
        );
index 91080b1d8ea18b9c36074511f52d709a48c3d8fe..630c0a6759426fa6918d022087dee6b89ceefc2b 100755 (executable)
@@ -220,8 +220,8 @@ function register_post(&$a) {
        $spubkey = $spkey["key"];
 
        $r = q("INSERT INTO `user` ( `guid`, `username`, `password`, `email`, `openid`, `nickname`,
-               `pubkey`, `prvkey`, `spubkey`, `sprvkey`, `register_date`, `verified`, `blocked` )
-               VALUES ( '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d )",
+               `pubkey`, `prvkey`, `spubkey`, `sprvkey`, `register_date`, `verified`, `blocked`, `timezone` )
+               VALUES ( '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, 'UTC' )",
                dbesc(generate_user_guid()),
                dbesc($username),
                dbesc($new_password_encoded),