Version Description
No known upgrade issues.
Download this release
Release Info
Developer | mpwalsh8 |
Plugin | Google Forms |
Version | 0.38 |
Comparing to | |
See all releases |
Code changes from version 0.37 to 0.38
- index.php +2 -2
- readme.txt +4 -1
- wpgform-core.php +0 -5
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.38
|
8 |
+
* Build: 0.38.$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.1
|
7 |
-
Stable tag: 0.
|
8 |
|
9 |
Embeds a published, public Google Form in a WordPress post, page, or widget.
|
10 |
|
@@ -193,6 +193,9 @@ No known upgrade issues.
|
|
193 |
|
194 |
== Changelog ==
|
195 |
|
|
|
|
|
|
|
196 |
= Version 0.37 =
|
197 |
* Fixed inacuracies in ReadMe.txt file which caused repository not to show available update.
|
198 |
|
4 |
Tags: Google Forms, Google Docs, Google, Spreadsheet, shortcode, forms
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.4.1
|
7 |
+
Stable tag: 0.38
|
8 |
|
9 |
Embeds a published, public Google Form in a WordPress post, page, or widget.
|
10 |
|
193 |
|
194 |
== Changelog ==
|
195 |
|
196 |
+
= Version 0.38 =
|
197 |
+
* Removed debug code left in from working on problem fixed in v0.36.
|
198 |
+
|
199 |
= Version 0.37 =
|
200 |
* Fixed inacuracies in ReadMe.txt file which caused repository not to show available update.
|
201 |
|
wpgform-core.php
CHANGED
@@ -340,12 +340,7 @@ class wpGForm
|
|
340 |
if (is_wp_error(self::$response))
|
341 |
return '<div class="gform-google-error">Unable to retrieve Google Form. Please try reloading this page.</div>' ;
|
342 |
else
|
343 |
-
{
|
344 |
-
print '<pre>' ;
|
345 |
-
print_r(self::$response) ;
|
346 |
-
print '</pre>' ;
|
347 |
$html = self::$response['body'] ;
|
348 |
-
}
|
349 |
|
350 |
// Need to filter the HTML retrieved from the form and strip off the stuff
|
351 |
// we don't want. This gets rid of the HTML wrapper from the Google page.
|
340 |
if (is_wp_error(self::$response))
|
341 |
return '<div class="gform-google-error">Unable to retrieve Google Form. Please try reloading this page.</div>' ;
|
342 |
else
|
|
|
|
|
|
|
|
|
343 |
$html = self::$response['body'] ;
|
|
|
344 |
|
345 |
// Need to filter the HTML retrieved from the form and strip off the stuff
|
346 |
// we don't want. This gets rid of the HTML wrapper from the Google page.
|