Fixed Styling missing from outdated templates message 1.1.0 Beta 1

This annoyed me, since it wasn't highlighted I didn't notice I had outdated templates and it made me wondering why my Notices didn't work ^^

Anyhow, the fix is pretty simple, in admin template home, change
Code:
<xen:if is="{$outdatedTemplates}">
<div class="importantMessage">
<a href="{xen:adminlink templates/outdated}">{xen:phrase there_templates_that_may_be_outdated_click_to_review}</a>
</div>
</xen:if>

Code:
<xen:if is="{$outdatedTemplates}">
<p class="importantMessage">
<a href="{xen:adminlink templates/outdated}">{xen:phrase there_templates_that_may_be_outdated_click_to_review}</a>
</p>
</xen:if>
Yep, it should be "p" instead of "div" :D
 
Top Bottom