null reference error
darcs-hash:20080718042030-84dde-78e056f1e47335556d353cdf2940651f59291efd.gz
This commit is contained in:
parent
12b7f23ed2
commit
3614c77d64
|
@ -145,7 +145,11 @@ class TwitapifriendshipsAction extends TwitterapiAction {
|
||||||
return Profile::staticGet($id);
|
return Profile::staticGet($id);
|
||||||
} else {
|
} else {
|
||||||
$user = User::staticGet('nickname', $id);
|
$user = User::staticGet('nickname', $id);
|
||||||
|
if ($user) {
|
||||||
return $user->getProfile();
|
return $user->getProfile();
|
||||||
|
} else {
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -153,8 +157,7 @@ class TwitapifriendshipsAction extends TwitterapiAction {
|
||||||
if (is_numeric($id)) {
|
if (is_numeric($id)) {
|
||||||
return User::staticGet($id);
|
return User::staticGet($id);
|
||||||
} else {
|
} else {
|
||||||
$user = User::staticGet('nickname', $id);
|
return User::staticGet('nickname', $id);
|
||||||
return $user->getProfile();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user