Here's a fix for the category images not appearing. This will make them display correctly depending on the switch you have set for the filesystem/database file saving.
Open \download.php
Find:
Code:
$caticon = $row['cat_icon'];
Add After:
Code:
$caturl = $row['cat_icon_url'];
if ($caticon){
$cicon = '<a href="cat.php?img=' . $catid . '"><img src="cat.php?img=' . $catid . '" height="50" border="0"></a>';
} else {
$cicon = '<img src="/icat/'.$caturl.'" border="0" height="50">';
}
Edit Template:
bfc_download_cat_bit
Find:
Code:
<div align="center"><img src="cat.php?img=$cid" height="50"></div>
Replace with:
Code:
<div align="center">$cicon</div>