Plugin Directory

Changeset 3145542


Ignore:
Timestamp:
09/02/2024 04:32:16 PM (19 months ago)
Author:
kakaroto84
Message:

3.0.3

  • Fixed php warning of undefined array key when first installed
Location:
wc-yabi/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • wc-yabi/trunk/content/settings.php

    r3121708 r3145542  
    22    $yabi_settings = get_option( 'yabi_settings' );
    33    $invoice_number = get_option( 'yabi_invoice_number' );
     4   
     5    if( empty( $yabi_settings ) )
     6    {
     7        $yabi_settings = array(
     8            'payment_type'      => 'IN_CASH',
     9            'credit_days'       => 30,
     10            'modified_checkout' => 'No',
     11            'invoice_type'      => 'Manual',
     12            'invoice_name'      => '',
     13            'owner'             => 'person',
     14            'businessunituuid'  => '',
     15            'token'             => '',
     16            'url_client'        => 'https://api.yabi.co/co/einvoices/v2/',
     17        );
     18    }
    419?>
    520<style>
  • wc-yabi/trunk/readme.txt

    r3130228 r3145542  
    33Tags: woocommerce, electronic invoice
    44Donate link: https://www.paypal.me/datakun
    5 Requires at least: 6.4
    6 Tested up to: 6.5.2
    7 Requires PHP: 8.0
     5Requires at least: 7.4
     6Tested up to: 6.6.1
     7Requires PHP: 8.2
    88Stable tag: trunk
    99License: GPLv3 or later
     
    116116= 3.0.2 =
    117117* Fixed php warning of undefined array key
     118= 3.0.3 =
     119* Fixed php warning of undefined array key when first installed
  • wc-yabi/trunk/wc-yabi.php

    r3130228 r3145542  
    99 * Plugin URI:        https://mireunion.com/yabi
    1010 * Description:       Create your electronic invoices of purchases made in woocommerce with Yabi
    11  * Version:           3.0.2
     11 * Version:           3.0.3
    1212 * Author:            Mex Avila
    1313 * Author URI:        https://datakun.com/
Note: See TracChangeset for help on using the changeset viewer.