ForceGroup and some qvitter API stuff still used staticGet
This commit is contained in:
parent
340740266c
commit
362b6ad2fc
|
@ -102,7 +102,7 @@ class ApiAccountRegisterAction extends ApiAction
|
|||
}
|
||||
|
||||
if (!empty($this->code)) {
|
||||
$this->invite = Invitation::staticGet('code', $this->code);
|
||||
$this->invite = Invitation::getKV('code', $this->code);
|
||||
if (empty($this->invite)) {
|
||||
// TRANS: Client error displayed when trying to register to an invite-only site without a valid invitation.
|
||||
$this->clientError(_('Sorry, invalid invitation code.'), 401);
|
||||
|
@ -197,7 +197,7 @@ class ApiAccountRegisterAction extends ApiAction
|
|||
if (!$email || strlen($email) == 0) {
|
||||
return false;
|
||||
}
|
||||
$user = User::staticGet('email', $email);
|
||||
$user = User::getKV('email', $email);
|
||||
return is_object($user);
|
||||
}
|
||||
|
||||
|
|
|
@ -53,7 +53,7 @@ class ApiExternalProfileShowAction extends ApiPrivateAuthAction
|
|||
$profileurl = urldecode($this->arg('profileurl'));
|
||||
|
||||
// TODO: Make this more ... unique!
|
||||
$this->profile = Profile::staticGet('profileurl', $profileurl);
|
||||
$this->profile = Profile::getKV('profileurl', $profileurl);
|
||||
|
||||
if (!($this->profile instanceof Profile)) {
|
||||
// TRANS: Client error displayed when requesting profile information for a non-existing profile.
|
||||
|
|
|
@ -56,7 +56,7 @@ class ApiStatusesFavsAction extends ApiAuthAction
|
|||
|
||||
$id = $this->trimmed('id');
|
||||
|
||||
$this->original = Notice::staticGet('id', $id);
|
||||
$this->original = Notice::getKV('id', $id);
|
||||
|
||||
if (!($this->original instanceof Notice)) {
|
||||
// TRANS: Client error displayed trying to display redents of a non-exiting notice.
|
||||
|
@ -102,7 +102,7 @@ class ApiStatusesFavsAction extends ApiAuthAction
|
|||
$ids_with_profile_data = array();
|
||||
$i=0;
|
||||
foreach($ids as $id) {
|
||||
$profile = Profile::staticGet('id', $id);
|
||||
$profile = Profile::getKV('id', $id);
|
||||
$ids_with_profile_data[$i]['user_id'] = $id;
|
||||
$ids_with_profile_data[$i]['nickname'] = $profile->nickname;
|
||||
$ids_with_profile_data[$i]['fullname'] = $profile->fullname;
|
||||
|
|
|
@ -53,7 +53,7 @@ class ForceGroupPlugin extends Plugin
|
|||
{
|
||||
$profile = $notice->getProfile();
|
||||
|
||||
$isRemote = !(User::staticGet('id', $profile->id));
|
||||
$isRemote = !(User::getKV('id', $profile->id));
|
||||
if ($isRemote) {
|
||||
/*
|
||||
* Notices from remote users on other sites
|
||||
|
|
Loading…
Reference in New Issue
Block a user