Changeset 2162328
- Timestamp:
- 09/24/2019 04:42:32 PM (6 years ago)
- Location:
- sprout-invoices-wp-forms
- Files:
-
- 10 added
- 4 edited
-
tags/1.3.2 (added)
-
tags/1.3.2/inc (added)
-
tags/1.3.2/inc/SI_WPForms.php (added)
-
tags/1.3.2/inc/WPForms_Controller.php (added)
-
tags/1.3.2/languages (added)
-
tags/1.3.2/languages/default.po (added)
-
tags/1.3.2/languages/sprout-invoices.mo (added)
-
tags/1.3.2/readme.txt (added)
-
tags/1.3.2/screenshot-1.png (added)
-
tags/1.3.2/sprout-invoices-wpforms-integration.php (added)
-
trunk/inc/SI_WPForms.php (modified) (1 diff)
-
trunk/inc/WPForms_Controller.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/sprout-invoices-wpforms-integration.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
sprout-invoices-wp-forms/trunk/inc/SI_WPForms.php
r1920502 r2162328 210 210 'full_name' => $full_name, 211 211 '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'] : '', 217 217 ); 218 218 -
sprout-invoices-wp-forms/trunk/inc/WPForms_Controller.php
r1883505 r2162328 36 36 $args['status'] = SI_Estimate::STATUS_PENDING; 37 37 } 38 39 do_action( 'si_doc_generation_start' ); 40 38 41 // Create invoice 39 42 $args = apply_filters( 'si_estimate_submmissions_args', $args ); … … 83 86 $args['status'] = SI_Invoice::STATUS_PENDING; 84 87 } 88 89 do_action( 'si_doc_generation_start' ); 90 85 91 // Create invoice 86 92 $args = apply_filters( 'si_invoice_submmissions_args', $args ); -
sprout-invoices-wp-forms/trunk/readme.txt
r2008767 r2162328 5 5 Requires at least: 4.8 6 6 Tested up to: 5.0 7 Stable tag: 1.3 7 Stable tag: 1.3.2 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
sprout-invoices-wp-forms/trunk/sprout-invoices-wpforms-integration.php
r2008730 r2162328 6 6 * Description: Allows for a form submitted by WP Forms to create all necessary records to send your client an invoice or estimate. 7 7 * Author: Sprout Apps 8 * Version: 1.3 8 * Version: 1.3.2 9 9 * Author URI: https://sproutapps.co 10 10 * Text Domain: sprout-invoices
Note: See TracChangeset
for help on using the changeset viewer.