|
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.
|