Active
Project:
Premium
Version:
6.x-1.0-alpha1
Component:
Code
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
15 Mar 2012 at 18:57 UTC
Updated:
15 Mar 2012 at 18:57 UTC
It seems like Drupal search doesn't index content of premium nodes. Can anyone give me an advice how to fix this ?
I tried the following:
<?php
/**
* Implementation of hook_nodeapi().
*/
function MYMODULE_nodeapi(&$node, $op, $a3 = NULL, $a4 = NULL) {
if ($op == 'update index') {
return $node->content['body']['#value'];
}
}
?>but unfortunately it didn't help.
Thanks.