Better output for 'Force SSL' on the system status page

This commit is contained in:
Geert De Deckere 2012-06-12 09:21:25 +02:00
parent 9a969237a1
commit 2d3e0095d2
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ function woocommerce_status() {
</tr>
<tr>
<td><?php _e('Force SSL','woocommerce')?></td>
<td><?php echo ucwords(get_option('woocommerce_force_ssl_checkout')); ?></td>
<td><?php echo ( get_option( 'woocommerce_force_ssl_checkout' ) === 'yes' ) ? '<mark class="yes">'.__( 'Yes', 'woocommerce' ).'</mark>' : '<mark class="no">'.__( 'No', 'woocommerce' ).'</mark>'; ?></td>
</tr>
</tbody>