Version Description
2014-11-24 - High priority = * Bug Fix: PHP error on agent side in live chat window
Download this release
Release Info
Developer | WP-LiveChat |
Plugin | WP Live Chat Support |
Version | 4.2.1 |
Comparing to | |
See all releases |
Code changes from version 4.2.0 to 4.2.1
- functions.php +1 -2
- readme.txt +3 -0
- wp-live-chat-support.php +7 -3
functions.php
CHANGED
@@ -301,8 +301,7 @@ function wplc_return_chat_messages($cid) {
|
|
301 |
|
302 |
$time_diff = $timestamp - $previous_timestamp;
|
303 |
if ($time_diff > 60) { $show_time = true; } else { $show_time = false; }
|
304 |
-
|
305 |
-
$date = new DateTime($timestamp);
|
306 |
$timeshow = date('l, F d Y h:i A',$timestamp);
|
307 |
|
308 |
if ($previous_time == $timeshow || !$show_time) { $timeshow = ""; }
|
301 |
|
302 |
$time_diff = $timestamp - $previous_timestamp;
|
303 |
if ($time_diff > 60) { $show_time = true; } else { $show_time = false; }
|
304 |
+
// $date = new DateTime($timestamp);
|
|
|
305 |
$timeshow = date('l, F d Y h:i A',$timestamp);
|
306 |
|
307 |
if ($previous_time == $timeshow || !$show_time) { $timeshow = ""; }
|
readme.txt
CHANGED
@@ -125,6 +125,9 @@ It is highly recommended that you upgrade to WP Live Chat Support version 4.1.4
|
|
125 |
|
126 |
== Changelog ==
|
127 |
|
|
|
|
|
|
|
128 |
= 4.2.0 2014-11-20 - Medium priority =
|
129 |
* Chat UI Improvements
|
130 |
* Small bug fixes
|
125 |
|
126 |
== Changelog ==
|
127 |
|
128 |
+
= 4.2.1 2014-11-24 - High priority =
|
129 |
+
* Bug Fix: PHP error on agent side in live chat window
|
130 |
+
|
131 |
= 4.2.0 2014-11-20 - Medium priority =
|
132 |
* Chat UI Improvements
|
133 |
* Small bug fixes
|
wp-live-chat-support.php
CHANGED
@@ -3,13 +3,17 @@
|
|
3 |
Plugin Name: WP Live Chat Support
|
4 |
Plugin URI: http://www.wp-livechat.com
|
5 |
Description: The easiest to use website live chat plugin. Let your visitors chat with you and increase sales conversion rates with WP Live Chat Support. No third party connection required!
|
6 |
-
Version: 4.2.
|
7 |
Author: WP-LiveChat
|
8 |
Author URI: http://www.wp-livechat.com
|
9 |
*/
|
10 |
|
11 |
|
12 |
-
/* 4.2.
|
|
|
|
|
|
|
|
|
13 |
* Chat UI Improvements
|
14 |
* Small bug fixes
|
15 |
*
|
@@ -80,7 +84,7 @@ global $wplc_tblname_chats;
|
|
80 |
global $wplc_tblname_msgs;
|
81 |
$wplc_tblname_chats = $wpdb->prefix . "wplc_chat_sessions";
|
82 |
$wplc_tblname_msgs = $wpdb->prefix . "wplc_chat_msgs";
|
83 |
-
$wplc_version = "4.2.
|
84 |
|
85 |
define('WPLC_BASIC_PLUGIN_DIR',dirname(__FILE__));
|
86 |
define('WPLC_BASIC_PLUGIN_URL',plugins_url()."/wp-live-chat-support/");
|
3 |
Plugin Name: WP Live Chat Support
|
4 |
Plugin URI: http://www.wp-livechat.com
|
5 |
Description: The easiest to use website live chat plugin. Let your visitors chat with you and increase sales conversion rates with WP Live Chat Support. No third party connection required!
|
6 |
+
Version: 4.2.1
|
7 |
Author: WP-LiveChat
|
8 |
Author URI: http://www.wp-livechat.com
|
9 |
*/
|
10 |
|
11 |
|
12 |
+
/* 4.2.1 2014-11-24 - High Priority
|
13 |
+
* Bug Fix: PHP Error on agent side in chat window
|
14 |
+
*
|
15 |
+
*
|
16 |
+
* 4.2.0 2014-11-20 - Medium priority
|
17 |
* Chat UI Improvements
|
18 |
* Small bug fixes
|
19 |
*
|
84 |
global $wplc_tblname_msgs;
|
85 |
$wplc_tblname_chats = $wpdb->prefix . "wplc_chat_sessions";
|
86 |
$wplc_tblname_msgs = $wpdb->prefix . "wplc_chat_msgs";
|
87 |
+
$wplc_version = "4.2.1";
|
88 |
|
89 |
define('WPLC_BASIC_PLUGIN_DIR',dirname(__FILE__));
|
90 |
define('WPLC_BASIC_PLUGIN_URL',plugins_url()."/wp-live-chat-support/");
|