1
Wayne
MyAlbum-P 2.6 -- myalbum_categories.html template problem
  • 2004/2/12 21:21

  • Wayne

  • Just popping in

  • Posts: 35

  • Since: 2002/2/13


Greetings,

I'm trying to alter the appearance of MyAlbum-P 2.6 and I'm running into a problem. CSS and formatting aside, why doesn't this work? It should, but whenever I put it in place, the categories NEVER get displayed.

I'd appreciate any help I can get.

Wayne

----
<table width="100%" border='0' cellspacing='1' cellpadding='3' align="center">
<
tr>
    <
td colspan="2">Categories</td>
</
tr>

<{foreach 
from=$subcategories item=cat key=count}>
    <
tr>
        <
td><a href="<{$mod_url}>/viewcat.php?cid=<{$cat.cid}>"><{$cat.title}></a></td>
        <
td><{$cat.photo_total_sum}></td>
    </
tr>
    <{foreach 
from=$cat.subcategories item=subcat}>
        <
tr>
            <
td><a href="<{$mod_url}>/viewcat.php?cid=<{$subcat.cid}>"><{$subcat.title}></a></td>
            <
td><{$subcat.photo_small_sum}></td>
        </
tr>
    </foreach>
</foreach>    
</
table>