mirror of
https://github.com/friendica/friendica
synced 2025-04-27 09:50:12 +00:00
Diaspora now uses a 32 digit guid.
This commit is contained in:
parent
f8afddef0f
commit
bb7ec55f1f
2 changed files with 3 additions and 2 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue