Changeset 3166348
- Timestamp:
- 10/10/2024 08:58:26 AM (14 months ago)
- Location:
- gazchaps-woocommerce-getaddress-io
- Files:
-
- 12 added
- 3 edited
-
tags/3.2.3 (added)
-
tags/3.2.3/class.admin.php (added)
-
tags/3.2.3/class.api-client.php (added)
-
tags/3.2.3/class.checkout.php (added)
-
tags/3.2.3/class.common.php (added)
-
tags/3.2.3/class.database.php (added)
-
tags/3.2.3/class.exception.php (added)
-
tags/3.2.3/class.settings.php (added)
-
tags/3.2.3/gazchaps-getaddress-io-admin.min.js (added)
-
tags/3.2.3/gazchaps-getaddress-io.min.js (added)
-
tags/3.2.3/index.php (added)
-
tags/3.2.3/readme.txt (added)
-
trunk/class.api-client.php (modified) (1 diff)
-
trunk/index.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
gazchaps-woocommerce-getaddress-io/trunk/class.api-client.php
r3146359 r3166348 56 56 return $response; 57 57 } else { 58 throw new GazChap_WC_GetAddress_Plugin_Exception( $response, $response['response']['message'], $response['response']['code']);58 throw new GazChap_WC_GetAddress_Plugin_Exception( $response, $response['response']['message'], intval( $response['response']['code'] ) ); 59 59 } 60 60 } else { 61 throw new GazChap_WC_GetAddress_Plugin_Exception( $response, $response->get_error_message(), $response->get_error_code() );61 throw new GazChap_WC_GetAddress_Plugin_Exception( $response, $response->get_error_message(), $response->get_error_code() ? intval( $response->get_error_code() ) : 0 ); 62 62 } 63 63 } -
gazchaps-woocommerce-getaddress-io/trunk/index.php
r3146359 r3166348 3 3 * Plugin Name: GazChap's WooCommerce getAddress.io Postcode Lookup 4 4 * Plugin URI: https://www.gazchap.com/posts/woocommerce-getaddress-io 5 * Version: 3.2. 25 * Version: 3.2.3 6 6 * Author: Gareth 'GazChap' Griffiths 7 7 * Author URI: https://www.gazchap.com -
gazchaps-woocommerce-getaddress-io/trunk/readme.txt
r3146362 r3166348 8 8 License: GNU General Public License v2.0 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html 10 Stable tag: 3.2. 210 Stable tag: 3.2.3 11 11 Donate link: https://ko-fi.com/gazchap 12 12 … … 83 83 `gazchaps-woocommerce-getaddress-io_clear_additional_fields` - defaults to true, set to '__return_false' to stop the "additional fields" area of the checkout having a clear style applied to it 84 84 85 == Changelog == 86 = 3.2.3 (10/10/2024) = 85 87 86 == Changelog == 88 * Bugfix - fixed another issue with WP_Errors. Thanks again to jhmaths for the report. 89 87 90 = 3.2.2 (04/09/2024) = 88 91
Note: See TracChangeset
for help on using the changeset viewer.