Diaspora now uses a 32 digit guid.

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

View file

@ -1788,7 +1788,7 @@ function return_bytes ($size_str) {
function generate_user_guid() {
$found = true;
do {
$guid = random_string(16);
$guid = get_guid(32);
$x = q("SELECT `uid` FROM `user` WHERE `guid` = '%s' LIMIT 1",
dbesc($guid)
);