closing for some tags changed and leads to problems with some browsers
the closing in HTML is changed to the short closing if the body of the tag is empty e.g. <i class="icon"></i>
is changed to <i class="icon"/>
.
This leads in some browsers (e.g. FF) to a wrong interpretation of the following tags.
Example:
<i class="icon"/> <br/> Some text
will be changed by the browser to:
<i class="icon"> <br/> Some text </i>
which will cause the text to have the wrong font (in this case).
This does not happen for <i class="icon"></i>
previous SobiPro version:
<td class="centered"><i class="fa fa-lg fa-check text-success"></i> <br/> Application Manager </td>
SobiPro 1.4.6:
<td class="centered"><i class="fa fa-lg fa-check text-success"/> <br/> Application Manager </td>
Please note: also the
in the previous version is now an empty line