Reply to thread

for example:

bah now it wont do it. it was happening relentlessly on this thread, to the point i used general code to escape it

[PHP]<xen:if hascontent="true">

    <!-- block: sidebar_online_staff -->

    <div class="section staffOnline avatarList">

        <div class="secondaryContent">

            <h3>{xen:phrase staff_online_now}</h3>

            <ul>

                <xen:contentcheck>

                    <xen:foreach loop="$onlineUsers.records" value="$user">

                        <xen:if is="{$user.is_moderator} OR {$user.is_admin}">

                            <li>

                                <xen:avatar user="$user" size="s" img="true" />

                                <xen:username user="$user" rich="true" />

                                <div class="userTitle">{xen:helper userTitle, $user}</div>

                            </li>

                        </xen:if>

                    </xen:foreach>

                </xen:contentcheck>

            </ul>

        </div>

    </div>

    <!-- end block: sidebar_online_staff -->

</xen:if>[/PHP]

edited


Back
Top Bottom