Plugin Directory

Changeset 3068815


Ignore:
Timestamp:
04/11/2024 07:31:57 AM (2 years ago)
Author:
bobgroup
Message:

Update to version 1.0.18 from GitLab (https://gitlab.bob.co.za/bobpay/bobpay-woocommerce-plugin; https://gitlab.bob.co.za/bobpay/bobpay-woocommerce-plugin/-/jobs/218741)

Location:
bob-pay
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • bob-pay/tags/1.0.18/Makefile

    r3048893 r3068815  
    88    npx wp-env destroy
    99
     10create-zip:
     11    nvm use 16; npm install; npm run build;
     12
  • bob-pay/tags/1.0.18/bobpay-plugin.php

    r3048893 r3068815  
    88 * Requires at least: 5.0
    99 * Requires PHP:      7.0
    10  * Version:           1.0.17
     10 * Version:           1.0.18
    1111 * License:           GPLv2 or later
    1212 */
     
    1515defined('ABSPATH') || exit;
    1616
    17 define('WC_BOBPAY_PLUGIN_VERSION', '1.0.17');
     17define('WC_BOBPAY_PLUGIN_VERSION', '1.0.18');
    1818define('WC_BOBPAY_PLUGIN_URL', untrailingslashit(plugins_url(basename(plugin_dir_path(__FILE__)), basename(__FILE__))));
    1919define('WC_BOBPAY_PLUGIN_PATH', untrailingslashit(plugin_dir_path(__FILE__)));
  • bob-pay/tags/1.0.18/includes/abstract-payment-method.php

    r3048893 r3068815  
    249249            $error = null;
    250250            $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']);
    252254            $order = wc_get_order($order_id);
    253255
  • bob-pay/tags/1.0.18/readme.txt

    r3048893 r3068815  
    55Tested up to: 6.1.1
    66Requires PHP: 7.0.0
    7 Stable tag: 1.0.17
     7Stable tag: 1.0.18
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    5050== Changelog ==
    5151
     52= 1.0.18 =
     53Bug fix
     54
    5255= 1.0.17 =
    5356Bug fix
  • bob-pay/trunk/Makefile

    r3048893 r3068815  
    88    npx wp-env destroy
    99
     10create-zip:
     11    nvm use 16; npm install; npm run build;
     12
  • bob-pay/trunk/bobpay-plugin.php

    r3048893 r3068815  
    88 * Requires at least: 5.0
    99 * Requires PHP:      7.0
    10  * Version:           1.0.17
     10 * Version:           1.0.18
    1111 * License:           GPLv2 or later
    1212 */
     
    1515defined('ABSPATH') || exit;
    1616
    17 define('WC_BOBPAY_PLUGIN_VERSION', '1.0.17');
     17define('WC_BOBPAY_PLUGIN_VERSION', '1.0.18');
    1818define('WC_BOBPAY_PLUGIN_URL', untrailingslashit(plugins_url(basename(plugin_dir_path(__FILE__)), basename(__FILE__))));
    1919define('WC_BOBPAY_PLUGIN_PATH', untrailingslashit(plugin_dir_path(__FILE__)));
  • bob-pay/trunk/includes/abstract-payment-method.php

    r3048893 r3068815  
    249249            $error = null;
    250250            $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']);
    252254            $order = wc_get_order($order_id);
    253255
  • bob-pay/trunk/readme.txt

    r3048893 r3068815  
    55Tested up to: 6.1.1
    66Requires PHP: 7.0.0
    7 Stable tag: 1.0.17
     7Stable tag: 1.0.18
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    5050== Changelog ==
    5151
     52= 1.0.18 =
     53Bug fix
     54
    5255= 1.0.17 =
    5356Bug fix
Note: See TracChangeset for help on using the changeset viewer.