Diaspora now uses a 32 digit guid.

This commit is contained in:
Michael Vogel 2015-08-12 23:37:50 +02:00
parent f8afddef0f
commit bb7ec55f1f
2 changed files with 3 additions and 2 deletions

View file

@ -157,7 +157,8 @@ function import_account(&$a, $file) {
//~ $newuid = 1;
// Generate a new guid for the account. Otherwise there will be problems with diaspora
q("UPDATE `user` SET `guid` = '%s' WHERE `uid` = %d", generate_user_guid(), $newuid);
q("UPDATE `user` SET `guid` = '%s' WHERE `uid` = %d",
dbesc(generate_user_guid()), intval($newuid));
foreach ($account['profile'] as &$profile) {
foreach ($profile as $k => &$v) {