Version Description
No known upgrade issues.
Download this release
Release Info
Developer | mpwalsh8 |
Plugin | Google Forms |
Version | 0.72 |
Comparing to | |
See all releases |
Code changes from version 0.71 to 0.72
- index.php +3 -3
- readme.txt +5 -2
- wpgform-core.php +1 -1
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.72
|
8 |
+
* Build: 0.72.$WCREV$
|
9 |
* Last Modified: $WCDATE$
|
10 |
* Author: Mike Walsh
|
11 |
* Author URI: http://www.michaelwalsh.org
|
25 |
*
|
26 |
*/
|
27 |
|
28 |
+
define('WPGFORM_VERSION', '0.72') ;
|
29 |
|
30 |
require_once('wpgform-core.php') ;
|
31 |
require_once('wpgform-post-type.php') ;
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: mpwalsh8
|
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=DK4MS3AA983CC
|
4 |
Tags: Google Forms, Google Docs, Google, Spreadsheet, shortcode, forms
|
5 |
Requires at least: 3.7.1
|
6 |
-
Tested up to: 3.9
|
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.71 =
|
385 |
* Bumped version number due to mistagging v0.70 release.
|
386 |
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=DK4MS3AA983CC
|
4 |
Tags: Google Forms, Google Docs, Google, Spreadsheet, shortcode, forms
|
5 |
Requires at least: 3.7.1
|
6 |
+
Tested up to: 3.9.1
|
7 |
+
Stable tag: 0.72
|
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.72 =
|
385 |
+
* Fixed call to non-existant function is_empty(), should be calling empty().
|
386 |
+
|
387 |
= Version 0.71 =
|
388 |
* Bumped version number due to mistagging v0.70 release.
|
389 |
|
wpgform-core.php
CHANGED
@@ -1488,7 +1488,7 @@ jQuery(document).ready(function($) {
|
|
1488 |
// Send email?
|
1489 |
if (self::$posted && is_null($action) && ($email || $user_email))
|
1490 |
{
|
1491 |
-
if (is_null($sendto) ||
|
1492 |
|
1493 |
if ($email && is_email($sendto))
|
1494 |
wpGForm::SendConfirmationEmail($wpgform_options['email_format'], $sendto, $results) ;
|
1488 |
// Send email?
|
1489 |
if (self::$posted && is_null($action) && ($email || $user_email))
|
1490 |
{
|
1491 |
+
if (is_null($sendto) || empty($sendto)) $sendto = get_bloginfo('admin_email') ;
|
1492 |
|
1493 |
if ($email && is_email($sendto))
|
1494 |
wpGForm::SendConfirmationEmail($wpgform_options['email_format'], $sendto, $results) ;
|