Merge pull request #15611 from woocommerce/fix/15606

More strict COD method matching
This commit is contained in:
Claudiu Lodromanean 2017-06-14 09:04:46 -07:00 committed by GitHub
commit 4f5f04ec79
1 changed files with 5 additions and 1 deletions

View File

@ -178,10 +178,14 @@ class WC_Gateway_COD extends WC_Payment_Gateway {
return false;
}
if ( strstr( $check_method, ':' ) ) {
$check_method = current( explode( ':', $check_method ) );
}
$found = false;
foreach ( $this->enable_for_methods as $method_id ) {
if ( strpos( $check_method, $method_id ) === 0 ) {
if ( $check_method === $method_id ) {
$found = true;
break;
}