Plugin Directory

Changeset 2926956


Ignore:
Timestamp:
06/16/2023 07:51:01 AM (3 years ago)
Author:
PerfectSolution
Message:

Update trunk/ - 7.0.1

Location:
woocommerce-quickpay
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • woocommerce-quickpay/tags/7.0.1/README.txt

    r2924644 r2926956  
    2828
    2929== Changelog ==
     30= 7.0.1 =
     31* Fix: Remove strict return type from WC_QuickPay_Paypal::apply_gateway_icons
     32
    3033= 7.0.0 =
    3134* Feat: Added support for High Performance Order Storage / Custom Order Tables
  • woocommerce-quickpay/tags/7.0.1/classes/instances/paypal.php

    r2924617 r2926956  
    9494     * @return string
    9595     */
    96     public function apply_gateway_icons( $icon, $id ): string {
     96    public function apply_gateway_icons( $icon, $id ) {
    9797        if ( $id === $this->id ) {
    9898            $icon = $this->gateway_icon_create( 'paypal', $this->gateway_icon_size() );
  • woocommerce-quickpay/tags/7.0.1/woocommerce-quickpay.php

    r2924617 r2926956  
    44 * Plugin URI: http://wordpress.org/plugins/woocommerce-quickpay/
    55 * Description: Integrates your QuickPay payment gateway into your WooCommerce installation.
    6  * Version: 7.0.0
     6 * Version: 7.0.1
    77 * Author: Perfect Solution
    88 * Text Domain: woo-quickpay
     
    1818}
    1919
    20 define( 'WCQP_VERSION', '7.0.0' );
     20define( 'WCQP_VERSION', '7.0.1' );
    2121define( 'WCQP_URL', plugins_url( __FILE__ ) );
    2222define( 'WCQP_PATH', plugin_dir_path( __FILE__ ) );
  • woocommerce-quickpay/trunk/README.txt

    r2924644 r2926956  
    2828
    2929== Changelog ==
     30= 7.0.1 =
     31* Fix: Remove strict return type from WC_QuickPay_Paypal::apply_gateway_icons
     32
    3033= 7.0.0 =
    3134* Feat: Added support for High Performance Order Storage / Custom Order Tables
  • woocommerce-quickpay/trunk/classes/instances/paypal.php

    r2924617 r2926956  
    9494     * @return string
    9595     */
    96     public function apply_gateway_icons( $icon, $id ): string {
     96    public function apply_gateway_icons( $icon, $id ) {
    9797        if ( $id === $this->id ) {
    9898            $icon = $this->gateway_icon_create( 'paypal', $this->gateway_icon_size() );
  • woocommerce-quickpay/trunk/woocommerce-quickpay.php

    r2924617 r2926956  
    44 * Plugin URI: http://wordpress.org/plugins/woocommerce-quickpay/
    55 * Description: Integrates your QuickPay payment gateway into your WooCommerce installation.
    6  * Version: 7.0.0
     6 * Version: 7.0.1
    77 * Author: Perfect Solution
    88 * Text Domain: woo-quickpay
     
    1818}
    1919
    20 define( 'WCQP_VERSION', '7.0.0' );
     20define( 'WCQP_VERSION', '7.0.1' );
    2121define( 'WCQP_URL', plugins_url( __FILE__ ) );
    2222define( 'WCQP_PATH', plugin_dir_path( __FILE__ ) );
Note: See TracChangeset for help on using the changeset viewer.