// fix category_tree if no tree

This commit is contained in:
tDidierjean
2011-11-23 23:13:15 +00:00
parent 0cbb18dbc1
commit 1e03dd00fb
@@ -11,12 +11,14 @@
});
});
</script>
{l s='Go to category:'}
<select id="go_to_categ" name="go_to_categ">
{foreach from=$category_tree item=categ}
<option value="{$categ->id}" {if $categ->selected}selected="selected"{/if} >
{$categ->dashes}{$categ->name}
</option>
{/foreach}
</select>
{if isset($category_tree)}
{l s='Go to category:'}
<select id="go_to_categ" name="go_to_categ">
{foreach from=$category_tree item=categ}
<option value="{$categ->id}" {if $categ->selected}selected="selected"{/if} >
{$categ->dashes}{$categ->name}
</option>
{/foreach}
</select>
{/if}
{/block}