帮助编辑tpl

时间:2011-04-08 03:56:25

标签: html php templates validation

我不知道我做了什么但突然之间我的代码没有按照它应有的方式行事。

我的菜单显示不正确,因为我缺少UL结束标记。

我使用了附带的代码,但没有。 Attatched是生成的代码:

This is what I want
and this is what I get

缺失的ul在第71行。

请帮帮我。

PHP / TPL代码:

<nav id="categories"> 
<ul class="dropdown dropdown-horizontal"> 
{checkActionsTpl location="tpl_widget_categories_start"} 
{section name=thecat loop=$cat_array} 
{if $lastspacer eq ""}{assign var=lastspacer value=$cat_array[thecat].spacercount}{/if} 
{if $cat_array[thecat].auto_id neq 0} 

{if $cat_array[thecat].spacercount < $submit_lastspacer}</ul></li>{/if} 
{if $cat_array[thecat].spacercount > $submit_lastspacer}<ul>{/if} 

    <li{if $cat_array[thecat].principlecat neq 0} class="dir"{/if}> 
    <a href="{if $pagename eq "upcoming" || $groupview eq "upcoming"} 
                    {$URL_queuedcategory, $cat_array[thecat].safename} 
                {else} 
                    {$URL_maincategory, $cat_array[thecat].safename|replace:' ':'%20'} 
                {/if} 
                {php} 
    global $URLMethod; 
    if ($URLMethod==2) print "/"; 
    {/php}">{$cat_array[thecat].name}</a> 
    {if $cat_array[thecat].principlecat eq 0}</li>{else}{/if}{assign var=submit_lastspacer value=$cat_array[thecat].spacercount}{/if} 
{/section} 
{checkActionsTpl location="tpl_widget_categories_end"} 
{if $cat_array[thecat].spacercount < $submit_lastspacer}{$lastspacer|repeat_count:'</ul></li>'}{/if} 
        </ul></li> 
</ul> 
</nav> 

1 个答案:

答案 0 :(得分:1)

只看代码,我想你已经

</ul></li>
错误的方式在三个地方回合。你想要

</li></ul>