// Do errors exist in the install? If so light them up like a christmas tree.
if ($context['has_failure'])
{
<div style="margin: 2ex; padding: 2ex; border: 2px dashed #cc3344; color: black; background-color: #ffe4e9; margin-top: 0;">
<div style="float: left; width: 2ex; font-size: 2em; color: red;">!!</div>
<b style="text-decoration: underline;">', $txt['package_will_fail_title'], '</b><br />
<div style="padding-left: 6ex;">
', $txt['package_will_fail_warning'];
if (isset($context['failures'])) foreach($context['failures'] as $failure) {
echo '<pre>File: ' .
$failure['filename'] .
' Failure: ' . $failure['search'] . '</pre>';
}
</div>
</div>
</div>';
}