Fixed node_page_level_n uses link class instead of page

Chris D

XenForo developer
Staff member
Rich (BB code):
<li class="node link level-n node_{$page.node_id}">
    <div>
        <h4 class="nodeTitle"><a href="{xen:link pages, $page}" class="menuRow">{$page.title}</a></h4>
    </div>
    <xen:if is="{$renderedChildren}">
        <ol>
            <xen:foreach loop="$renderedChildren" value="$child">
                {xen:raw $child}
            </xen:foreach>
        </ol>
    </xen:if>
</li>
 
Actually very little. In fact, none in normal usage.

But if you were wanting to style specific node types, it has the scope to look incorrect, e.g.

upload_2013-11-28_18-41-9.webp

Those Picture Perfect Step 1, 2, 3 etc. are pages, but due to this bug they have the link icon instead of page.
 
Top Bottom