Version Description
No known upgrade issues.
Download this release
Release Info
Developer | mpwalsh8 |
Plugin | Google Forms |
Version | 0.34 |
Comparing to | |
See all releases |
Code changes from version 0.33 to 0.34
- index.php +2 -2
- readme.txt +4 -1
- wpgform-options.php +1 -0
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.34
|
8 |
+
* Build: 0.34.$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 |
|
@@ -192,6 +192,9 @@ No known upgrade issues.
|
|
192 |
|
193 |
== Changelog ==
|
194 |
|
|
|
|
|
|
|
195 |
= Version 0.33 =
|
196 |
* Fixed inacuracies in ReadMe.txt file.
|
197 |
|
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.34
|
8 |
|
9 |
Embeds a published, public Google Form in a WordPress post, page, or widget.
|
10 |
|
192 |
|
193 |
== Changelog ==
|
194 |
|
195 |
+
= Version 0.34 =
|
196 |
+
* Fixed syntax error which caused plugin to fail. Whoops.
|
197 |
+
|
198 |
= Version 0.33 =
|
199 |
* Fixed inacuracies in ReadMe.txt file.
|
200 |
|
wpgform-options.php
CHANGED
@@ -259,6 +259,7 @@ function wpgform_options_page()
|
|
259 |
function wpgform_settings_input()
|
260 |
{
|
261 |
$wpgform_options = wpgform_get_plugin_options() ;
|
|
|
262 |
<table class="form-table">
|
263 |
<tr valign="top">
|
264 |
<th scope="row"><label><b><i>gform</i></b> Shortcode</label></th>
|
259 |
function wpgform_settings_input()
|
260 |
{
|
261 |
$wpgform_options = wpgform_get_plugin_options() ;
|
262 |
+
?>
|
263 |
<table class="form-table">
|
264 |
<tr valign="top">
|
265 |
<th scope="row"><label><b><i>gform</i></b> Shortcode</label></th>
|