Skip to content

Commit

Permalink
Fix unclosed {if}
Browse files Browse the repository at this point in the history
  • Loading branch information
illiphilli committed Jun 16, 2011
1 parent 5b7591c commit 1b9f169
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions framework/modules/ecommerce/views/store/showall.tpl
Expand Up @@ -56,7 +56,7 @@
<div class="cats">
<h2>Categories Under {$current_category->title}</h2>
{foreach name="cats" from=$categories item="cat"}
{if $cat->is_active==1 || $user->is_acting_admin}
{if $cat->is_active==1 || $user->isAdmin()}
{counter assign=iteration}
{if $iteration%2==0}
{assign var="positioninfo" value=" last-in-row"}
Expand Down Expand Up @@ -88,7 +88,7 @@
{/foreach}
<div style="clear:both"></div>
</div>
{else}
{/if}
<!--hr/-->
<h2>All Products Under {$current_category->title}</h2>
{pagelinks paginate=$page top=1}
Expand Down

0 comments on commit 1b9f169

Please sign in to comment.