Hmm ... you have to edit some files.
1. templates/rows.html, add <%category_path%> tag
2. browse.php3, line 166-172
PHP Code:
$category_path = ShowCategoryPathLink($cat);
$rows .= EvalTemplate($template_path."rows.html",
"\$number,\$link_id,\$title,\$date,\$unique_name,\$category_path,".
"\$description,\$hits,\$votes,\$rating,\$url,\$bid,".
"\$new,\$hot,\$top_rated,\$pick,\$contact_name,\$email".$templ_fields);
$rows .= "\n";
3. new.php3, hot.php3, top_rated.php3, pick.php3
PHP Code:
$cat = $value["category_id"];
$category_path = ShowCategoryPathLink($cat);
$rows .= EvalTemplate($template_path."rows.html",
"\$number,\$link_id,\$title,\$date,\$category_path,".
"\$description,\$hits,\$votes,\$rating,\$url,\$bid,".
"\$new,\$hot,\$top_rated,\$pick,\$contact_name,\$email".$templ_fields);
$rows .= "\n";