forked from GNUsocial/gnu-social
save a URI with the user
This commit is contained in:
parent
b5cfcba471
commit
4d01f8fbb6
@ -282,7 +282,13 @@ class User extends Memcached_DataObject
|
|||||||
}
|
}
|
||||||
|
|
||||||
$user->id = $id;
|
$user->id = $id;
|
||||||
$user->uri = common_user_uri($user);
|
|
||||||
|
if (!empty($uri)) {
|
||||||
|
$user->uri = $uri;
|
||||||
|
} else {
|
||||||
|
$user->uri = common_user_uri($user);
|
||||||
|
}
|
||||||
|
|
||||||
if (!empty($password)) { // may not have a password for OpenID users
|
if (!empty($password)) { // may not have a password for OpenID users
|
||||||
$user->password = common_munge_password($password, $id);
|
$user->password = common_munge_password($password, $id);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user