Remove strip tags from invoice template

#8793
This commit is contained in:
Mike Jolley 2015-08-12 18:31:21 +01:00
parent cbb89fa4b9
commit a3eec05b0c
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ if ( ! defined( 'ABSPATH' ) ) {
$i++;
?><tr>
<td class="td" colspan="2" style="text-align:left; <?php if ( $i == 1 ) echo 'border-top-width: 4px !important;'; ?>"><?php echo $total['label']; ?></td>
<td class="td" style="text-align:left; <?php if ( $i == 1 ) echo 'border-top-width: 4px !important;'; ?>"><?php echo strip_tags( $total['value'] ); ?></td>
<td class="td" style="text-align:left; <?php if ( $i == 1 ) echo 'border-top-width: 4px !important;'; ?>"><?php echo $total['value']; ?></td>
</tr><?php
}
}