Gravity PDF - Version 3.3.2

Version Description

  • Bug - Some hosts reported SSL certificate errors when using the support API. Disabled HTTPS for further investigation. Using hash-based verification for authentication.
  • Housekeeping - Forgot to disable API debug feature after completing beta
Download this release

Release Info

Developer Blue Liquid Designs
Plugin Icon 128x128 Gravity PDF
Version 3.3.2
Comparing to
See all releases

Code changes from version 3.3.1 to 3.3.2

README.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.gravityformspdfextended.com
4
  Tags: gravity, forms, pdf, automation, attachment
5
  Requires at least: 3.5
6
  Tested up to: 3.8
7
- Stable tag: 3.3.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -78,6 +78,10 @@ All FAQs can be [viewed on the Gravity Forms PDF Extended website](http://gravit
78
 
79
  == Changelog ==
80
 
 
 
 
 
81
  = 3.3.1 =
82
  * Bug - $form_data['list'] was mapped using an incremental key instead of via the field ID
83
 
4
  Tags: gravity, forms, pdf, automation, attachment
5
  Requires at least: 3.5
6
  Tested up to: 3.8
7
+ Stable tag: 3.3.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
78
 
79
  == Changelog ==
80
 
81
+ = 3.3.2 =
82
+ * Bug - Some hosts reported SSL certificate errors when using the support API. Disabled HTTPS for further investigation. Using hash-based verification for authentication.
83
+ * Housekeeping - Forgot to disable API debug feature after completing beta
84
+
85
  = 3.3.1 =
86
  * Bug - $form_data['list'] was mapped using an incremental key instead of via the field ID
87
 
helper/api.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
 
3
- define('PDF_DEBUG', true);
4
 
5
  /*
6
  * Change the timeout to 15 seconds
@@ -9,7 +9,7 @@ define('PDF_DEBUG', true);
9
 
10
  class gfpdfe_API
11
  {
12
- private $api_url = 'https://gravityformspdfextended.com/api/';
13
  private $api_version = '1.0';
14
 
15
  private $username;
1
  <?php
2
 
3
+ define('PDF_DEBUG', false);
4
 
5
  /*
6
  * Change the timeout to 15 seconds
9
 
10
  class gfpdfe_API
11
  {
12
+ private $api_url = 'http://gravityformspdfextended.com/api/';
13
  private $api_version = '1.0';
14
 
15
  private $username;
pdf.php CHANGED
@@ -4,7 +4,7 @@
4
  Plugin Name: Gravity Forms PDF Extended
5
  Plugin URI: http://www.gravityformspdfextended.com
6
  Description: Gravity Forms PDF Extended allows you to save/view/download a PDF from the front- and back-end, and automate PDF creation on form submission. Our Business Plus package also allows you to overlay field onto an existing PDF.
7
- Version: 3.3.1
8
  Author: Blue Liquid Designs
9
  Author URI: http://www.blueliquiddesigns.com.au
10
 
@@ -33,7 +33,7 @@ GNU General Public License for more details.
33
  /*
34
  * Define our constants
35
  */
36
- if(!defined('PDF_EXTENDED_VERSION')) { define('PDF_EXTENDED_VERSION', '3.3.1'); }
37
  if(!defined('GF_PDF_EXTENDED_SUPPORTED_VERSION')) { define('GF_PDF_EXTENDED_SUPPORTED_VERSION', '1.7'); }
38
  if(!defined('GF_PDF_EXTENDED_WP_SUPPORTED_VERSION')) { define('GF_PDF_EXTENDED_WP_SUPPORTED_VERSION', '3.5'); }
39
  if(!defined('GF_PDF_EXTENDED_PHP_SUPPORTED_VERSION')) { define('GF_PDF_EXTENDED_PHP_SUPPORTED_VERSION', '5'); }
4
  Plugin Name: Gravity Forms PDF Extended
5
  Plugin URI: http://www.gravityformspdfextended.com
6
  Description: Gravity Forms PDF Extended allows you to save/view/download a PDF from the front- and back-end, and automate PDF creation on form submission. Our Business Plus package also allows you to overlay field onto an existing PDF.
7
+ Version: 3.3.2
8
  Author: Blue Liquid Designs
9
  Author URI: http://www.blueliquiddesigns.com.au
10
 
33
  /*
34
  * Define our constants
35
  */
36
+ if(!defined('PDF_EXTENDED_VERSION')) { define('PDF_EXTENDED_VERSION', '3.3.2'); }
37
  if(!defined('GF_PDF_EXTENDED_SUPPORTED_VERSION')) { define('GF_PDF_EXTENDED_SUPPORTED_VERSION', '1.7'); }
38
  if(!defined('GF_PDF_EXTENDED_WP_SUPPORTED_VERSION')) { define('GF_PDF_EXTENDED_WP_SUPPORTED_VERSION', '3.5'); }
39
  if(!defined('GF_PDF_EXTENDED_PHP_SUPPORTED_VERSION')) { define('GF_PDF_EXTENDED_PHP_SUPPORTED_VERSION', '5'); }
view/templates/settings/changelog.php CHANGED
@@ -20,6 +20,12 @@
20
 
21
  <p><strong>Current Version: <?php echo PDF_EXTENDED_VERSION; ?></strong></p>
22
 
 
 
 
 
 
 
23
  <h3>3.3.1</h3>
24
  <ul>
25
  <li>Bug - $form_data['list'] was mapped using an incremental key instead of via the field ID</li>
20
 
21
  <p><strong>Current Version: <?php echo PDF_EXTENDED_VERSION; ?></strong></p>
22
 
23
+ <h3>3.3.2</h3>
24
+ <ul>
25
+ <li>Bug - Some hosts reported SSL certificate errors when using the support API. Disabled HTTPS for further investigation. Using hash-based verification for authentication.</li>
26
+ <li>Housekeeping - Forgot to disable API debug feature after completing beta</li>
27
+ </ul>
28
+
29
  <h3>3.3.1</h3>
30
  <ul>
31
  <li>Bug - $form_data['list'] was mapped using an incremental key instead of via the field ID</li>