XF 1.5 Upgrade Issue

forum_list was modified in this update, you may of merged the templates incorrectly causing the code to duplicate.

You can take a look at forum_list and click "view custom changes" to see the template edits.
 
Thanks Russ

It says no outdated templates.

I have navigated to the code you mention but I don't even know what I am looking at here.

If you merged the template(which I have a feeling you did) it won't show that it's outdated.

Here's what I'd do... open the template forum_list copy the contents to a notepad file. Click Revert Template, this will make your template go back to the stock version of the template. You may need to re-apply any custom change you made on the template which you can compare using the notepad file.
 
Or delete in the template forum_list:

Code:
<xen:if is="{$threads}">
            <div class="section threadList">
                <div class="secondaryContent">
                    <h3><a href="{xen:link find-new/posts}" rel="nofollow">{xen:phrase new_posts}</a></h3>
                    <xen:include template="sidebar_new_posts" />
                </div>
            </div>
        </xen:if>
 
Top Bottom