Not a bug " too much in footer?

Robert9

Well-known member
Affected version
1.2.4
XF1.24, template footer

Code:
            <ul class="footerLinks">
            <xen:hook name="footer_links">
                <xen:if is="{$contactUrl}"><li><a href="{$contactUrl}" {xen:if "{$xenOptions.contactUrl.overlay} OR {$xenOptions.contactUrl.type} == 'default'", 'class="OverlayTrigger" data-overlayOptions="{&quot;fixed&quot;:false}"'}">{xen:phrase contact_us}</a></li></xen:if>
                <li><a href="{xen:link help}">{xen:phrase help}</a></li>
                <xen:if is="{$homeLink}"><li><a href="{$homeLink}" class="homeLink">{xen:phrase home}</a></li></xen:if>
                <li><a href="{$requestPaths.requestUri}#navigation" class="topLink">{xen:phrase go_to_top}</a></li>
                <li><a href="{xen:link forums/-/index.rss}" rel="alternate" class="globalFeed" target="_blank"
                    title="{xen:phrase rss_feed_for_x, 'title={$xenOptions.boardTitle}'}">{xen:phrase rss}</a></li>
            </xen:hook>
            </ul>


Code:
<a href="{$contactUrl}" {xen:if "{$xenOptions.contactUrl.overlay} OR {$xenOptions.contactUrl.type} == 'default'", 'class="OverlayTrigger" data-overlayOptions="{&quot;fixed&quot;:false}"'}">

Should be:

Code:
<a href="{$contactUrl}" {xen:if "{$xenOptions.contactUrl.overlay} OR {$xenOptions.contactUrl.type} == 'default'", 'class="OverlayTrigger" data-overlayOptions="{&quot;fixed&quot;:false}"'}>

"{&quot;fixed&quot;:false}"'}">
to
"{&quot;fixed&quot;:false}"'}>

?

Now i have no more errors here with HTML syntax checker
 
Top Bottom