Merge branch 'master' of github.com:woothemes/woocommerce

This commit is contained in:
Nicola Mustone 2015-04-08 16:49:56 +02:00
commit df5548a770
1 changed files with 2 additions and 2 deletions

View File

@ -131,7 +131,7 @@ class WC_Validation {
* @return string formatted postcode * @return string formatted postcode
*/ */
public static function format_postcode( $postcode, $country ) { public static function format_postcode( $postcode, $country ) {
wc_format_postcode( $postcode, $country ); return wc_format_postcode( $postcode, $country );
} }
/** /**
@ -142,6 +142,6 @@ class WC_Validation {
* @return string * @return string
*/ */
public static function format_phone( $tel ) { public static function format_phone( $tel ) {
wc_format_phone_number( $tel ); return wc_format_phone_number( $tel );
} }
} }