global search MDL-25133 fixes to blog posts search documents so that it will add new posts into the search index successfully

This commit is contained in:
Aparup Banerjee 2010-11-11 05:53:43 +00:00
parent 0ed26d1288
commit f38da0342f

View File

@ -284,14 +284,14 @@ function user_single_document($id, $itemtype) {
return new UserSearchDocument($userhash, $user->id, 'user', null);
}
} elseif ($itemtype == 'post') {
if ($post = $DB->get_records('post', array('id' => $id))){
if ($post = $DB->get_record('post', array('id' => $id))){
$texts = array();
$texts[] = $post->subject;
$texts[] = $post->summary;
$texts[] = $post->content;
$post->description = implode(" ", $texts);
$posthash = get_object_vars($post);
return new UserPostSearchDocument($posthash, $user->id, 'post', null);
return new UserPostSearchDocument($posthash, $post->userid, 'post', null);
}
} elseif ($itemtype == 'attachment' && @$CFG->block_search_enable_file_indexing) {
if ($post = $DB->get_records('post', array('id' => $id))){