Version Description
- 2016-09-15 - Medium priority =
- Further cloud server bug fixes
Download this release
Release Info
Developer | WP-LiveChat |
Plugin | WP Live Chat Support |
Version | 6.2.09 |
Comparing to | |
See all releases |
Code changes from version 6.2.07 to 6.2.09
- js/wplc_u_admin.js +1 -1
- readme.txt +6 -0
- wp-live-chat-support.php +8 -2
js/wplc_u_admin.js
CHANGED
@@ -283,7 +283,7 @@ var v_action = obj[key]['action'];
|
|
283 |
var v_status_string = wplc_get_status_name(parseInt(v_status));
|
284 |
var v_ip_address = obj[key]['data']['ip'];
|
285 |
|
286 |
-
var v_is_mobile = obj[key]['other']['user_is_mobile'];
|
287 |
|
288 |
var v_vis_html = "<span class='wplc_headerspan_v'>"+v_name+"</span>";
|
289 |
var v_nr_html = "<span class='wplc_headerspan_nr'>"+wplc_get_type_box(v_type)+"</span>";
|
283 |
var v_status_string = wplc_get_status_name(parseInt(v_status));
|
284 |
var v_ip_address = obj[key]['data']['ip'];
|
285 |
|
286 |
+
if (typeof obj[key]['other'] !== "undefined" && typeof obj[key]['other']['user_is_mobile'] !== "undefined") { var v_is_mobile = obj[key]['other']['user_is_mobile']; } else { var v_is_mobile = false; }
|
287 |
|
288 |
var v_vis_html = "<span class='wplc_headerspan_v'>"+v_name+"</span>";
|
289 |
var v_nr_html = "<span class='wplc_headerspan_nr'>"+wplc_get_type_box(v_type)+"</span>";
|
readme.txt
CHANGED
@@ -213,6 +213,12 @@ It is highly recommended that you upgrade to WP Live Chat Support version 4.4.0
|
|
213 |
|
214 |
== Changelog ==
|
215 |
|
|
|
|
|
|
|
|
|
|
|
|
|
216 |
= 6.2.07 - 2016-09-15 - Medium priority =
|
217 |
* Fixed a bug that caused a fatal error on older PHP version
|
218 |
|
213 |
|
214 |
== Changelog ==
|
215 |
|
216 |
+
= 6.2.09 - 2016-09-15 - Medium priority =
|
217 |
+
* Further cloud server bug fixes
|
218 |
+
|
219 |
+
= 6.2.08 - 2016-09-15 - Medium priority =
|
220 |
+
* Fixed a bug that caused no visitors to be displayed when using the cloud server
|
221 |
+
|
222 |
= 6.2.07 - 2016-09-15 - Medium priority =
|
223 |
* Fixed a bug that caused a fatal error on older PHP version
|
224 |
|
wp-live-chat-support.php
CHANGED
@@ -3,7 +3,7 @@
|
|
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: 6.2.
|
7 |
Author: WP-LiveChat
|
8 |
Author URI: http://www.wp-livechat.com
|
9 |
Text Domain: wplivechat
|
@@ -11,6 +11,12 @@
|
|
11 |
*/
|
12 |
|
13 |
/*
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
* 6.2.07 - 2016-09-15 - Medium priority
|
15 |
* Fixed a bug that caused a fatal error on older PHP version
|
16 |
*
|
@@ -418,7 +424,7 @@ global $wplc_tblname_offline_msgs;
|
|
418 |
$wplc_tblname_offline_msgs = $wpdb->prefix . "wplc_offline_messages";
|
419 |
$wplc_tblname_chats = $wpdb->prefix . "wplc_chat_sessions";
|
420 |
$wplc_tblname_msgs = $wpdb->prefix . "wplc_chat_msgs";
|
421 |
-
$wplc_version = "6.2.
|
422 |
|
423 |
define('WPLC_BASIC_PLUGIN_DIR', dirname(__FILE__));
|
424 |
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: 6.2.09
|
7 |
Author: WP-LiveChat
|
8 |
Author URI: http://www.wp-livechat.com
|
9 |
Text Domain: wplivechat
|
11 |
*/
|
12 |
|
13 |
/*
|
14 |
+
* 6.2.09 - 2016-09-15 - High priority for cloud users
|
15 |
+
* Further cloud server bug fixes
|
16 |
+
*
|
17 |
+
* 6.2.08 - 2016-09-15 - High priority for cloud users
|
18 |
+
* Fixed a bug that caused no visitors to be displayed when using the cloud server
|
19 |
+
*
|
20 |
* 6.2.07 - 2016-09-15 - Medium priority
|
21 |
* Fixed a bug that caused a fatal error on older PHP version
|
22 |
*
|
424 |
$wplc_tblname_offline_msgs = $wpdb->prefix . "wplc_offline_messages";
|
425 |
$wplc_tblname_chats = $wpdb->prefix . "wplc_chat_sessions";
|
426 |
$wplc_tblname_msgs = $wpdb->prefix . "wplc_chat_msgs";
|
427 |
+
$wplc_version = "6.2.09";
|
428 |
|
429 |
define('WPLC_BASIC_PLUGIN_DIR', dirname(__FILE__));
|
430 |
define('WPLC_BASIC_PLUGIN_URL', plugins_url() . "/wp-live-chat-support/");
|