From 843a4da4b65da2ddce088335fe1c67890dee39cb Mon Sep 17 00:00:00 2001 From: Steve Sutton Date: Wed, 7 Jun 2017 08:33:35 -0400 Subject: [PATCH] Update time from ical feed no Z at end of the times. --- index.php | 6 +++--- models/front/events/icalFeed.php | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/index.php b/index.php index 913c57c..8cb60b9 100644 --- a/index.php +++ b/index.php @@ -3,7 +3,7 @@ * Plugin Name: GLM Members Database Events * Plugin URI: http://www.gaslightmedia.com/ * Description: Gaslight Media Members Database. - * Version: 1.6.41 + * Version: 1.6.42 * Author: Chuck Scott * Author URI: http://www.gaslightmedia.com/ * License: GPL2 @@ -20,7 +20,7 @@ * @package glmMembersDatabaseEventsAddOn * @author Chuck Scott * @license http://www.gaslightmedia.com Gaslightmedia - * @version 1.6.40 + * @version 1.6.42 */ /* @@ -38,7 +38,7 @@ * so that we're sure the other add-ons see an up to date * version from this plugin. */ -define('GLM_MEMBERS_EVENTS_PLUGIN_VERSION', '1.6.41'); +define('GLM_MEMBERS_EVENTS_PLUGIN_VERSION', '1.6.42'); define('GLM_MEMBERS_EVENTS_PLUGIN_DB_VERSION', '0.1.2'); // This is the minimum version of the GLM Members DB plugin require for this plugin. diff --git a/models/front/events/icalFeed.php b/models/front/events/icalFeed.php index 0458f29..3f6107d 100644 --- a/models/front/events/icalFeed.php +++ b/models/front/events/icalFeed.php @@ -318,7 +318,7 @@ EOD; */ public function icalDateFormat($datetime) { - return date('Ymd\THis\Z', $datetime); + return date('Ymd\THis', $datetime); } /** -- 2.17.1