Fixed Superfluous </a> in admin:template_modification_list

DragonByte Tech

Well-known member
Affected version
2.0.0 RC3
If you open the template in the AdminCP editor, the syntax highlighting makes the runaway </a> pretty obvious, here's the specific block:

Code:
                                    <xf:action href="{{ link('template-modifications/log', $modification) }}" overlay="true">
                                        <span class="templateModApply templateModApply--ok{{ $modification.log_summary.ok ? ' is-active' : '' }}">{$modification.log_summary.ok}</span>
                                        / <span class="templateModApply templateModApply--notFound{{ $modification.log_summary.not_found ? ' is-active' : '' }}">{$modification.log_summary.not_found}</span>
                                        / <span class="templateModApply templateModApply--error{{ $modification.log_summary.error ? ' is-active' : '' }}">{$modification.log_summary.error}</span></a>
                                    </xf:action>

{$modification.log_summary.error}</span></a>


Fillip
 
Top Bottom