Version Description
No known upgrade issues.
Download this release
Release Info
Developer | mpwalsh8 |
Plugin | Google Forms |
Version | 0.81 |
Comparing to | |
See all releases |
Code changes from version 0.80 to 0.81
- index.php +3 -3
- readme.txt +4 -1
- wpgform-core.php +0 -2
index.php
CHANGED
@@ -4,8 +4,8 @@
|
|
4 |
* Plugin Name: Google Forms
|
5 |
* Plugin URI: http://michaelwalsh.org/wordpress/wordpress-plugins/wpgform/
|
6 |
* Description: Add Google Forms to a WordPress web site. Display a Google Form directly into your posts, pages or sidebar. Style the Google Form to match your existing theme and display a custom confirmation page after form submission.
|
7 |
-
* Version: 0.
|
8 |
-
* Build: 0.
|
9 |
* Last Modified: $WCDATE$
|
10 |
* Author: Mike Walsh
|
11 |
* Author URI: http://www.michaelwalsh.org
|
@@ -25,7 +25,7 @@
|
|
25 |
*
|
26 |
*/
|
27 |
|
28 |
-
define('WPGFORM_VERSION', '0.
|
29 |
|
30 |
require_once('wpgform-core.php') ;
|
31 |
require_once('wpgform-post-type.php') ;
|
4 |
* Plugin Name: Google Forms
|
5 |
* Plugin URI: http://michaelwalsh.org/wordpress/wordpress-plugins/wpgform/
|
6 |
* Description: Add Google Forms to a WordPress web site. Display a Google Form directly into your posts, pages or sidebar. Style the Google Form to match your existing theme and display a custom confirmation page after form submission.
|
7 |
+
* Version: 0.81
|
8 |
+
* Build: 0.81.$WCREV$
|
9 |
* Last Modified: $WCDATE$
|
10 |
* Author: Mike Walsh
|
11 |
* Author URI: http://www.michaelwalsh.org
|
25 |
*
|
26 |
*/
|
27 |
|
28 |
+
define('WPGFORM_VERSION', '0.81') ;
|
29 |
|
30 |
require_once('wpgform-core.php') ;
|
31 |
require_once('wpgform-post-type.php') ;
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
|
|
4 |
Tags: Google Forms, Google Docs, Google, Spreadsheet, shortcode, forms
|
5 |
Requires at least: 3.7.1
|
6 |
Tested up to: 4.2.2
|
7 |
-
Stable tag: 0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -381,6 +381,9 @@ No known upgrade issues.
|
|
381 |
|
382 |
== Change log ==
|
383 |
|
|
|
|
|
|
|
384 |
= Version 0.80 =
|
385 |
* Resolved a number of PHP Strict Standard notices resulting from calling non-static functions statically.
|
386 |
|
4 |
Tags: Google Forms, Google Docs, Google, Spreadsheet, shortcode, forms
|
5 |
Requires at least: 3.7.1
|
6 |
Tested up to: 4.2.2
|
7 |
+
Stable tag: 0.81
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
381 |
|
382 |
== Change log ==
|
383 |
|
384 |
+
= Version 0.81 =
|
385 |
+
* Removed leftover debug code which generated output into the error log.
|
386 |
+
|
387 |
= Version 0.80 =
|
388 |
* Resolved a number of PHP Strict Standard notices resulting from calling non-static functions statically.
|
389 |
|
wpgform-core.php
CHANGED
@@ -1361,7 +1361,6 @@ jQuery(document).ready(function($) {
|
|
1361 |
}
|
1362 |
|
1363 |
|
1364 |
-
error_log(sprintf('%s::%s', basename(__FILE__), __LINE__)) ;
|
1365 |
if (!empty($vRules_js))
|
1366 |
{
|
1367 |
// Clean up JS if extras were already output
|
@@ -1392,7 +1391,6 @@ error_log(sprintf('%s::%s', basename(__FILE__), __LINE__)) ;
|
|
1392 |
$js .= '
|
1393 |
}) ;' . PHP_EOL ;
|
1394 |
}
|
1395 |
-
error_log(sprintf('%s::%s', basename(__FILE__), __LINE__)) ;
|
1396 |
|
1397 |
// Handle hidden fields
|
1398 |
|
1361 |
}
|
1362 |
|
1363 |
|
|
|
1364 |
if (!empty($vRules_js))
|
1365 |
{
|
1366 |
// Clean up JS if extras were already output
|
1391 |
$js .= '
|
1392 |
}) ;' . PHP_EOL ;
|
1393 |
}
|
|
|
1394 |
|
1395 |
// Handle hidden fields
|
1396 |
|