Hi Terry,
… yes I’ve the latest version wooCommerce.
WooCommerce Version: 2.0.13
WooCommerce Datenbank-Version: 2.0.13
Do you mean, the bugfix ist not in the latest version (2.0.13)?
And I must take the bugfix from/in the 3 files?
But in the latest version (2.0.13) is the code completely different,
than the core files by this (this is wooCommerceVersion 2.0.0!):
https://github.com/woothemes/woocommerce/commit/2db3d24a8297c2b25b13fd700fc5a903d6763a40
For example in the version (2.0.13):
public function __unset( $property ) {
if ( isset( $this->_data[ $property ] ) ) {
unset( $this->_data[ $property ] );
$this->_dirty = true;
}
}
… instead in the version (2.0.0) by the updated core file:
public function __unset( $key ) {
if ( isset( $this->_data[ $key ] ) ) {
unset( $this->_data[ $key ] );
$this->_dirty = true;
}
}
the version (2.0.13) use “$property” instead “$key”!
What should I do?
g, mike