Merge pull request #1145 from GeertDD/ssl_status

Better output for 'Force SSL' on the system status page
This commit is contained in:
Mike Jolley 2012-06-12 02:47:59 -07:00
commit 98828df75b
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ function woocommerce_status() {
</tr> </tr>
<tr> <tr>
<td><?php _e('Force SSL','woocommerce')?></td> <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> </tr>
</tbody> </tbody>