Changeset 3068815
- Timestamp:
- 04/11/2024 07:31:57 AM (2 years ago)
- Location:
- bob-pay
- Files:
-
- 8 edited
- 1 copied
-
tags/1.0.18 (copied) (copied from bob-pay/trunk)
-
tags/1.0.18/Makefile (modified) (1 diff)
-
tags/1.0.18/bobpay-plugin.php (modified) (2 diffs)
-
tags/1.0.18/includes/abstract-payment-method.php (modified) (1 diff)
-
tags/1.0.18/readme.txt (modified) (2 diffs)
-
trunk/Makefile (modified) (1 diff)
-
trunk/bobpay-plugin.php (modified) (2 diffs)
-
trunk/includes/abstract-payment-method.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
bob-pay/tags/1.0.18/Makefile
r3048893 r3068815 8 8 npx wp-env destroy 9 9 10 create-zip: 11 nvm use 16; npm install; npm run build; 12 -
bob-pay/tags/1.0.18/bobpay-plugin.php
r3048893 r3068815 8 8 * Requires at least: 5.0 9 9 * Requires PHP: 7.0 10 * Version: 1.0.1 710 * Version: 1.0.18 11 11 * License: GPLv2 or later 12 12 */ … … 15 15 defined('ABSPATH') || exit; 16 16 17 define('WC_BOBPAY_PLUGIN_VERSION', '1.0.1 7');17 define('WC_BOBPAY_PLUGIN_VERSION', '1.0.18'); 18 18 define('WC_BOBPAY_PLUGIN_URL', untrailingslashit(plugins_url(basename(plugin_dir_path(__FILE__)), basename(__FILE__)))); 19 19 define('WC_BOBPAY_PLUGIN_PATH', untrailingslashit(plugin_dir_path(__FILE__))); -
bob-pay/tags/1.0.18/includes/abstract-payment-method.php
r3048893 r3068815 249 249 $error = null; 250 250 $done = false; 251 $order_id = $data['custom_payment_id']; 251 252 // Remove non numeric characters 253 $order_id = preg_replace("/[^0-9]/", "", $data['custom_payment_id']); 252 254 $order = wc_get_order($order_id); 253 255 -
bob-pay/tags/1.0.18/readme.txt
r3048893 r3068815 5 5 Tested up to: 6.1.1 6 6 Requires PHP: 7.0.0 7 Stable tag: 1.0.1 77 Stable tag: 1.0.18 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 50 50 == Changelog == 51 51 52 = 1.0.18 = 53 Bug fix 54 52 55 = 1.0.17 = 53 56 Bug fix -
bob-pay/trunk/Makefile
r3048893 r3068815 8 8 npx wp-env destroy 9 9 10 create-zip: 11 nvm use 16; npm install; npm run build; 12 -
bob-pay/trunk/bobpay-plugin.php
r3048893 r3068815 8 8 * Requires at least: 5.0 9 9 * Requires PHP: 7.0 10 * Version: 1.0.1 710 * Version: 1.0.18 11 11 * License: GPLv2 or later 12 12 */ … … 15 15 defined('ABSPATH') || exit; 16 16 17 define('WC_BOBPAY_PLUGIN_VERSION', '1.0.1 7');17 define('WC_BOBPAY_PLUGIN_VERSION', '1.0.18'); 18 18 define('WC_BOBPAY_PLUGIN_URL', untrailingslashit(plugins_url(basename(plugin_dir_path(__FILE__)), basename(__FILE__)))); 19 19 define('WC_BOBPAY_PLUGIN_PATH', untrailingslashit(plugin_dir_path(__FILE__))); -
bob-pay/trunk/includes/abstract-payment-method.php
r3048893 r3068815 249 249 $error = null; 250 250 $done = false; 251 $order_id = $data['custom_payment_id']; 251 252 // Remove non numeric characters 253 $order_id = preg_replace("/[^0-9]/", "", $data['custom_payment_id']); 252 254 $order = wc_get_order($order_id); 253 255 -
bob-pay/trunk/readme.txt
r3048893 r3068815 5 5 Tested up to: 6.1.1 6 6 Requires PHP: 7.0.0 7 Stable tag: 1.0.1 77 Stable tag: 1.0.18 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 50 50 == Changelog == 51 51 52 = 1.0.18 = 53 Bug fix 54 52 55 = 1.0.17 = 53 56 Bug fix
Note: See TracChangeset
for help on using the changeset viewer.