View Single Post
  #8 (permalink)  
Old 04-12-2006, 11:16 PM
onemc onemc is offline
New Pligger
 
Join Date: Apr 2006
Posts: 6
Here's a fix I just came up with...

In file index.php, right above the line:

$main_smarty = do_sidebar($main_smarty);

add,

if(!empty($_REQUEST['tag'])){
$mysearch = $_REQUEST['search'];
$from_where = "FROM links, tags WHERE tag_words='$mysearch' AND link_id=tag_link_id ORDER BY `link_votes` DESC ";
}


-----------------
It shouldn't break anything I can see, but someone might want to double check it. This fixes the tag cloud issue only, the search box still can't find requests < 4 chars.
Reply With Quote