google calender time issue fixed
This commit is contained in:
parent
62f2da8907
commit
b3d3c46b78
10
readme.txt
10
readme.txt
|
@ -2,9 +2,12 @@
|
|||
Contributors: magepeopleteam
|
||||
Tags: event, woocomerce events manager, events manager, Wordpress Events plugin, Events plugin, wp events
|
||||
Requires at least: 4.5
|
||||
Stable tag: 2.1
|
||||
Stable tag: trunk
|
||||
Version: 2.1.3
|
||||
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 URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
|
||||
|
@ -231,4 +234,7 @@ You can display the event list on any page by using the ShortCode. Just use this
|
|||
*Update Release, Date display issue fixed. 14 Sep 2018*
|
||||
|
||||
= 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*
|
|
@ -3,7 +3,7 @@
|
|||
* Plugin Name: Woocommerce Events Manager
|
||||
* Plugin URI: http://mage-people.com
|
||||
* Description: A Complete Event Solution for WordPress by MagePeople..
|
||||
* Version: 2.1.4
|
||||
* Version: 2.1.5
|
||||
* Author: MagePeople Team
|
||||
* Author URI: http://www.mage-people.com/
|
||||
* Text Domain: mage-eventpress
|
||||
|
@ -766,7 +766,7 @@ function mep_calender_date($datetime){
|
|||
$time = strtotime($datetime);
|
||||
$newdate = date('Ymd',$time);
|
||||
$newtime = date('Hi',$time);
|
||||
$newformat = $newdate."T".$newtime."00Z";
|
||||
$newformat = $newdate."T".$newtime."00";
|
||||
return $newformat;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue