Version Description
No known upgrade issues.
Download this release
Release Info
Developer | mpwalsh8 |
Plugin | Google Forms |
Version | 0.14 |
Comparing to | |
See all releases |
Code changes from version 0.13 to 0.14
- index.php +2 -2
- readme.txt +4 -1
- wpgform-options.php +3 -3
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.14
|
8 |
+
* Build: 0.14.$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.3.1
|
7 |
-
Stable tag: 0.
|
8 |
|
9 |
Embeds a published, public Google Form in a WordPress post, page, or widget.
|
10 |
|
@@ -173,6 +173,9 @@ No known upgrade issues.
|
|
173 |
|
174 |
== Changelog ==
|
175 |
|
|
|
|
|
|
|
176 |
= Version 0.13
|
177 |
* Fixed bug where values for check boxes and radio buttons was not retained when going back on multi-page Google Forms.
|
178 |
|
4 |
Tags: Google Forms, Google Docs, Google, Spreadsheet, shortcode, forms
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.3.1
|
7 |
+
Stable tag: 0.14
|
8 |
|
9 |
Embeds a published, public Google Form in a WordPress post, page, or widget.
|
10 |
|
173 |
|
174 |
== Changelog ==
|
175 |
|
176 |
+
= Version 0.14
|
177 |
+
* Fixed minor bug with default options which manifested itself as an array index warning on the Options page.
|
178 |
+
|
179 |
= Version 0.13
|
180 |
* Fixed bug where values for check boxes and radio buttons was not retained when going back on multi-page Google Forms.
|
181 |
|
wpgform-options.php
CHANGED
@@ -84,11 +84,11 @@ function wpgform_options_page()
|
|
84 |
?>
|
85 |
<div class="wrap">
|
86 |
<?php
|
87 |
-
if (function_exists(screen_icon)) screen_icon() ;
|
88 |
?>
|
89 |
<h2><?php _e('WordPress Google Form Plugin Settings') ; ?></h2>
|
90 |
<?php
|
91 |
-
$wpgform_options =
|
92 |
if (!$wpgform_options['donation_message'])
|
93 |
{
|
94 |
?>
|
@@ -262,7 +262,7 @@ function wpgform_options_page()
|
|
262 |
*/
|
263 |
function wpgform_settings_input()
|
264 |
{
|
265 |
-
$wpgform_options =
|
266 |
<table class="form-table">
|
267 |
<tr valign="top">
|
268 |
<th scope="row"><label><b><i>gform</i></b> Shortcode</label></th>
|
84 |
?>
|
85 |
<div class="wrap">
|
86 |
<?php
|
87 |
+
if (function_exists('screen_icon')) screen_icon() ;
|
88 |
?>
|
89 |
<h2><?php _e('WordPress Google Form Plugin Settings') ; ?></h2>
|
90 |
<?php
|
91 |
+
$wpgform_options = wpgform_get_plugin_options() ;
|
92 |
if (!$wpgform_options['donation_message'])
|
93 |
{
|
94 |
?>
|
262 |
*/
|
263 |
function wpgform_settings_input()
|
264 |
{
|
265 |
+
$wpgform_options = wpgform_get_plugin_options() ; ?>
|
266 |
<table class="form-table">
|
267 |
<tr valign="top">
|
268 |
<th scope="row"><label><b><i>gform</i></b> Shortcode</label></th>
|