Plugin Directory

Changeset 2162328


Ignore:
Timestamp:
09/24/2019 04:42:32 PM (6 years ago)
Author:
dancameron
Message:

Deploy version 1.3.2

Location:
sprout-invoices-wp-forms
Files:
10 added
4 edited

Legend:

Unmodified
Added
Removed
  • sprout-invoices-wp-forms/trunk/inc/SI_WPForms.php

    r1920502 r2162328  
    210210            'full_name' => $full_name,
    211211            'website' => $website,
    212             'contact_street' => $address['contact_street'],
    213             'contact_city' => $address['contact_city'],
    214             'contact_zone' => $address['contact_zone'],
    215             'contact_postal_code' => $address['contact_postal_code'],
    216             'contact_country' => $address['contact_country'],
     212            'contact_street' => isset( $address['contact_street'] ) ? $address['contact_street'] : '',
     213            'contact_city' => isset( $address['contact_city'] ) ? $address['contact_city'] : '',
     214            'contact_zone' => isset( $address['contact_zone'] ) ? $address['contact_zone'] : '',
     215            'contact_postal_code' => isset( $address['contact_postal_code'] ) ? $address['contact_postal_code'] : '',
     216            'contact_country' => isset( $address['contact_country'] ) ? $address['contact_country'] : '',
    217217        );
    218218
  • sprout-invoices-wp-forms/trunk/inc/WPForms_Controller.php

    r1883505 r2162328  
    3636            $args['status'] = SI_Estimate::STATUS_PENDING;
    3737        }
     38
     39        do_action( 'si_doc_generation_start' );
     40
    3841        // Create invoice
    3942        $args = apply_filters( 'si_estimate_submmissions_args', $args );
     
    8386            $args['status'] = SI_Invoice::STATUS_PENDING;
    8487        }
     88
     89        do_action( 'si_doc_generation_start' );
     90
    8591        // Create invoice
    8692        $args = apply_filters( 'si_invoice_submmissions_args', $args );
  • sprout-invoices-wp-forms/trunk/readme.txt

    r2008767 r2162328  
    55Requires at least: 4.8
    66Tested up to: 5.0
    7 Stable tag: 1.3
     7Stable tag: 1.3.2
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • sprout-invoices-wp-forms/trunk/sprout-invoices-wpforms-integration.php

    r2008730 r2162328  
    66 * Description: Allows for a form submitted by WP Forms to create all necessary records to send your client an invoice or estimate.
    77 * Author: Sprout Apps
    8  * Version: 1.3
     8 * Version: 1.3.2
    99 * Author URI: https://sproutapps.co
    1010 * Text Domain: sprout-invoices
Note: See TracChangeset for help on using the changeset viewer.