google calender time issue fixed
This commit is contained in:
parent
62f2da8907
commit
b3d3c46b78
|
@ -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*
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue