Changeset 3320175
- Timestamp:
- 06/30/2025 04:38:28 PM (7 months ago)
- Location:
- cart-recovery/trunk
- Files:
-
- 1 added
- 4 edited
-
cart-recovery-for-wordpress.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
vendor/composer/installed.json (modified) (1 diff)
-
vendor/hashids/hashids/PATCHES.txt (added)
-
vendor/hashids/hashids/src/Hashids.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
cart-recovery/trunk/cart-recovery-for-wordpress.php
r3320173 r3320175 6 6 * Description: An easy-to-use plugin that allows you to capture abandoned, and failed orders, and follow up. 7 7 * Author: Ademti Software 8 * Version: 3.4. 38 * Version: 3.4.4 9 9 * WC requires at least: 9.0 10 10 * WC tested up to: 9.8 … … 38 38 } 39 39 40 define( 'CRFW_VERSION', '3.4. 3' );40 define( 'CRFW_VERSION', '3.4.4' ); 41 41 define( 'CRFW_DB_VERSION', 6 ); 42 42 -
cart-recovery/trunk/readme.txt
r3320173 r3320175 7 7 License: GPL v2 8 8 Requires PHP: 7.4 9 Stable tag: 3.4. 39 Stable tag: 3.4.4 10 10 11 11 Cart recovery for WordPress brings abandoned cart recovery and tracking to your WordPress store. … … 51 51 == Changelog == 52 52 53 = 3.4. 3=53 = 3.4.4 = 54 54 * Fix: Fix issue on sites with neither ext-bcmath or ext-gmp 55 55 -
cart-recovery/trunk/vendor/composer/installed.json
r3320173 r3320175 84 84 "branch-alias": { 85 85 "dev-master": "4.1-dev" 86 }, 87 "patches_applied": { 88 "Fix issue with extbc compat": "patches/hashids.diff" 86 89 } 87 90 }, -
cart-recovery/trunk/vendor/hashids/hashids/src/Hashids.php
r3319896 r3320175 402 402 } 403 403 404 if (\extension_loaded('bcmath')) { 405 return new Bc(); 406 } 407 408 throw new RuntimeException('Missing BC Math or GMP extension.'); 404 return new Bc(); 409 405 } 410 406
Note: See TracChangeset
for help on using the changeset viewer.