Description

one of the menu tab entry for search module (cvs 1.112) shows array apart from content and users.

Upon mouseover on 'array' i get the url links to sitename.search/quote

Upon disabling quote module got rid of array. But i could not able to use quote module now, the error is due to this

function quotes_search($in_keys) {
  return array(
    t('Matching quotes'),
    do_search(array(
      'keys' => $in_keys,
      'type' => 'node',
      'select' => "SELECT DISTINCT s.lno, n.title, n.created, u.uid, u.name, s.count FROM {search_index} s INNER JOIN {node} n ON n.nid = s.lno INNER JOIN {users} u ON u.uid = n.uid " . node_access_join_sql() . " WHERE n.type = 'quotes' AND n.status = 1 AND s.type = 'quotes' AND s.word LIKE '%' AND " . node_access_where_sql())));
} // function quotes_search

i think it is the compatibility issue with quote module (cvs 1.13) calling _search hook

Comments

Anonymous’s picture

Project: Quote » Quotes

No, no, no, no, no.

There are a few problems here:
1. The problem you're encountering is with the quoteS module... NOT the quote (singular) module.
2. The problem you're encountering only happens with the CVS HEAD version of Drupal... thus, the issue should not be classified as 4.5.x.
3. The problem was already reported and is being discussed.

I'm fixing #1 and #2 and reclassifying as "duplicate" because of #3. For now, I suggest commenting out the entire quotes_search function, as it does nothing useful under CVS anyway. Note that there are also a number of other bugs pending for getting this module working properly with CVS HEAD... I'm not sure what the deal is, but no developers seem to be showing any interest.