feature.tmpl (vb3enhanced):
There's something wrong here (between lines 52-60)
$numfeatures=0;
for ( $x=1; $x < ($count+1); $x++ ) {
if ( $numfeatures == $rcols ) {
echo<<<PPPRINT
</td></tr><tr>
PPPRINT;
$numfeatures = 0;
}
$numfeatures++;
because in some cases(*) you'll end up having double </td> at the end of each row
like this:
</td> </td></tr><tr>
here:
http://www.faunaclassifieds.com/pp_c...ieds/index.php
here:
http://new.classiczcars.com/classifieds/index.php
You don't have that problem on photopostdev. I do as does that faunaclassics and classiczcars. Maybe that problem exists when there are more than 1 row of pictures.
Of course this is a really minor thing - I just noticed this as I'm trying to solve that problem that I have had a long time.. more about that in another thread.