]> git.mxchange.org Git - friendica.git/commitdiff
Fix #1193
authorFabrixxm <fabrix.xm@gmail.com>
Wed, 22 Oct 2014 07:46:51 +0000 (09:46 +0200)
committerFabrixxm <fabrix.xm@gmail.com>
Wed, 22 Oct 2014 07:46:51 +0000 (09:46 +0200)
include/user.php

index eccfa7a08a69eead63ae65d62d531dc48cb5d8d7..f8b1578ceb188d0ed3050c3c581baf809c70fb88 100644 (file)
@@ -189,8 +189,8 @@ function create_user($arr) {
        $spubkey = $sres['pubkey'];
 
        $r = q("INSERT INTO `user` ( `guid`, `username`, `password`, `email`, `openid`, `nickname`,
-               `pubkey`, `prvkey`, `spubkey`, `sprvkey`, `register_date`, `verified`, `blocked`, `timezone`, `service_class` )
-               VALUES ( '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, 'UTC', '%s' )",
+               `pubkey`, `prvkey`, `spubkey`, `sprvkey`, `register_date`, `verified`, `blocked`, `timezone`, `service_class`, `default-location` )
+               VALUES ( '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, 'UTC', '%s', '' )",
                dbesc(generate_user_guid()),
                dbesc($username),
                dbesc($new_password_encoded),