Tweak - Display of locale information on system status page.

Closes #6211
This commit is contained in:
Mike Jolley 2014-09-11 10:49:56 +01:00
parent 6eebf334a5
commit edd37f3d20
2 changed files with 2 additions and 1 deletions

View File

@ -216,7 +216,7 @@ if ( ! defined( 'ABSPATH' ) ) {
foreach ( $locale as $key => $val )
if ( in_array( $key, array( 'decimal_point', 'mon_decimal_point', 'thousands_sep', 'mon_thousands_sep' ) ) )
echo '<tr><td>' . $key . ':</td><td>' . $val . '</td></tr>';
echo '<tr><td>' . $key . ':</td><td>' . ( $val ? $val : __( 'N/A', 'woocommerce' ) ) . '</td></tr>';
?>
</tbody>

View File

@ -131,6 +131,7 @@ Yes you can! Join in on our [GitHub repository](http://github.com/woothemes/wooc
== Changelog ==
* Fix - Order status translation in admin and account page.
* Tweak - Display of locale information on system status page.
= 2.2.2 - 11/09/2014 =
* Fix - Saving of variation stock when parent stock management is disabled.