Fix language code for users

This commit is contained in:
Evan Prodromou 2012-07-03 17:12:59 -04:00
parent d4ea76a6ae
commit a65809c5bd
1 changed files with 8 additions and 3 deletions

View File

@ -232,10 +232,15 @@ class ResultItem
$this->id = $this->notice->id;
$this->from_user_id = $this->profile->id;
$user = User::staticGet('id', $this->profile->id);
$this->iso_language_code = $user->language;
$user = $this->profile->getUser();
if (empty($user)) {
// Gonna have to do till we can detect it
$this->iso_language_code = common_config('site', 'language');
} else {
$this->iso_language_code = $user->language;
}
$this->source = $this->getSourceLink($this->notice->source);
$avatar = $this->profile->getAvatar(AVATAR_STREAM_SIZE);