First person to give me a solution gets $20 by paypal. Okay in the search.module file of drupal there is a line, $output = ' <dt class="title"><a href="'. check_url($item['link']) .'">'. check_plain($item['title']) .'</a></dt>'; How can I edit what gets put in $item['link']? Thanks
$item['link'] = "put whatever you like" $output = ' <dt class="title"><a href="'. check_url($item['link']) .'">'. check_plain($item['title']) .'</a></dt>'; Now give me $20.
$output = ' <dt class="title"><a href="put whatever you want here">'. check_plain($item['title']) .'</a></dt>'
Not what I meant guys, I need to be able to change the node variable when it is originally declared. Basically instead of $node_url I want it to be $node->url.