Fixed missing/null values from JSON search results

This commit is contained in:
Jeffery To 2009-08-07 00:03:50 +08:00
parent c8c2d9d7c9
commit ad1c91a1cf
1 changed files with 2 additions and 2 deletions

View File

@ -207,7 +207,7 @@ class ResultItem
$replier_profile = null;
if ($this->notice->reply_to) {
$reply = Notice::staticGet(intval($notice->reply_to));
$reply = Notice::staticGet(intval($this->notice->reply_to));
if ($reply) {
$replier_profile = $reply->getProfile();
}
@ -224,7 +224,7 @@ class ResultItem
$user = User::staticGet('id', $this->profile->id);
$this->iso_language_code = $this->user->language;
$this->iso_language_code = $user->language;
$this->source = $this->getSourceLink($this->notice->source);