google calender time issue fixed

This commit is contained in:
magepeopleteam 2018-11-06 09:43:04 +00:00
parent 62f2da8907
commit b3d3c46b78
2 changed files with 10 additions and 4 deletions

View File

@ -2,9 +2,12 @@
Contributors: magepeopleteam Contributors: magepeopleteam
Tags: event, woocomerce events manager, events manager, Wordpress Events plugin, Events plugin, wp events Tags: event, woocomerce events manager, events manager, Wordpress Events plugin, Events plugin, wp events
Requires at least: 4.5 Requires at least: 4.5
Stable tag: 2.1 Stable tag: trunk
Version: 2.1.3 Version: 2.1.3
Tested up to: 4.9 Tested up to: 4.9
WC requires at least: 3.0
WC tested up to: 3.5.0
Requires PHP: 5.6
License: GPLv2 or later License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html License URI: http://www.gnu.org/licenses/gpl-2.0.html
@ -232,3 +235,6 @@ You can display the event list on any page by using the ShortCode. Just use this
= 2.1.4 = = 2.1.4 =
*Update Release, Sorting feture added into shortcode. 18 Sep 2018* *Update Release, Sorting feture added into shortcode. 18 Sep 2018*
= 2.1.5 =
*Update Release, Fixed Google Calender Time issue fixed. 06 Nov 2018*

View File

@ -3,7 +3,7 @@
* Plugin Name: Woocommerce Events Manager * Plugin Name: Woocommerce Events Manager
* Plugin URI: http://mage-people.com * Plugin URI: http://mage-people.com
* Description: A Complete Event Solution for WordPress by MagePeople.. * Description: A Complete Event Solution for WordPress by MagePeople..
* Version: 2.1.4 * Version: 2.1.5
* Author: MagePeople Team * Author: MagePeople Team
* Author URI: http://www.mage-people.com/ * Author URI: http://www.mage-people.com/
* Text Domain: mage-eventpress * Text Domain: mage-eventpress
@ -766,7 +766,7 @@ function mep_calender_date($datetime){
$time = strtotime($datetime); $time = strtotime($datetime);
$newdate = date('Ymd',$time); $newdate = date('Ymd',$time);
$newtime = date('Hi',$time); $newtime = date('Hi',$time);
$newformat = $newdate."T".$newtime."00Z"; $newformat = $newdate."T".$newtime."00";
return $newformat; return $newformat;
} }