Version Description
No known upgrade issues.
Download this release
Release Info
Developer | mpwalsh8 |
Plugin | Google Forms |
Version | 0.40 |
Comparing to | |
See all releases |
Code changes from version 0.39 to 0.40
- index.php +2 -2
- readme.txt +4 -1
- wpgform-core.php +0 -1
index.php
CHANGED
@@ -4,8 +4,8 @@
|
|
4 |
* Plugin Name: WordPress Google Form
|
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
|
4 |
* Plugin Name: WordPress Google Form
|
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.40
|
8 |
+
* Build: 0.40.$WCREV$
|
9 |
* Last Modified: $WCDATE$
|
10 |
* Author: Mike Walsh
|
11 |
* Author URI: http://www.michaelwalsh.org
|
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.0
|
6 |
Tested up to: 3.4.2
|
7 |
-
Stable tag: 0.
|
8 |
|
9 |
Embeds a published, public Google Form in a WordPress post, page, or widget.
|
10 |
|
@@ -196,6 +196,9 @@ No known upgrade issues.
|
|
196 |
|
197 |
== Changelog ==
|
198 |
|
|
|
|
|
|
|
199 |
= Version 0.39 =
|
200 |
* Added new attribute *unitedthemehack='on|off', which defaults to 'off'. This attribute allows WordPress Google Form to work correctly with Paralleus' Unite theme (which mucks with the submit button(s) on the Google Form preventing the form from being submitted).
|
201 |
|
4 |
Tags: Google Forms, Google Docs, Google, Spreadsheet, shortcode, forms
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.4.2
|
7 |
+
Stable tag: 0.40
|
8 |
|
9 |
Embeds a published, public Google Form in a WordPress post, page, or widget.
|
10 |
|
196 |
|
197 |
== Changelog ==
|
198 |
|
199 |
+
= Version 0.40 =
|
200 |
+
* Removed leftover debug code. Again. :-(
|
201 |
+
|
202 |
= Version 0.39 =
|
203 |
* Added new attribute *unitedthemehack='on|off', which defaults to 'off'. This attribute allows WordPress Google Form to work correctly with Paralleus' Unite theme (which mucks with the submit button(s) on the Google Form preventing the form from being submitted).
|
204 |
|
wpgform-core.php
CHANGED
@@ -715,7 +715,6 @@ jQuery(document).ready(function($) {
|
|
715 |
|
716 |
//$form = str_replace($action, 'action="' . get_permalink(get_the_ID()) . '"', $form) ;
|
717 |
$form = str_replace($action, 'action=""', $form) ;
|
718 |
-
var_dump($form) ;
|
719 |
|
720 |
|
721 |
// WordPress converts all of the ampersand characters to their
|
715 |
|
716 |
//$form = str_replace($action, 'action="' . get_permalink(get_the_ID()) . '"', $form) ;
|
717 |
$form = str_replace($action, 'action=""', $form) ;
|
|
|
718 |
|
719 |
|
720 |
// WordPress converts all of the ampersand characters to their
|