Version Description
2015-03-24 - Low Priority = * Bug Fix: Warning to update showing erroneously
Download this release
Release Info
Developer | WP-LiveChat |
Plugin | WP Live Chat Support |
Version | 4.2.12 |
Comparing to | |
See all releases |
Code changes from version 4.2.11 to 4.2.12
- readme.txt +3 -0
- wp-live-chat-support.php +9 -4
readme.txt
CHANGED
@@ -172,6 +172,9 @@ It is highly recommended that you upgrade to WP Live Chat Support version 4.1.4
|
|
172 |
|
173 |
== Changelog ==
|
174 |
|
|
|
|
|
|
|
175 |
= 4.2.11 2015-03-23 - Low Priority =
|
176 |
* Bug Fix: Bug in the banned user functionality
|
177 |
* Enhancement: Stying improvement on the Live Chat dashboard
|
172 |
|
173 |
== Changelog ==
|
174 |
|
175 |
+
= 4.2.12 2015-03-24 - Low Priority =
|
176 |
+
* Bug Fix: Warning to update showing erroneously
|
177 |
+
|
178 |
= 4.2.11 2015-03-23 - Low Priority =
|
179 |
* Bug Fix: Bug in the banned user functionality
|
180 |
* Enhancement: Stying improvement on the Live Chat dashboard
|
wp-live-chat-support.php
CHANGED
@@ -3,13 +3,16 @@
|
|
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 |
* Bug Fix: Bug in the banned user functionality
|
14 |
* Enhancement: Stying improvement on the Live Chat dashboard
|
15 |
* Enhancement: Strings are handled better for localization plugins (Pro)
|
@@ -171,7 +174,7 @@ global $wplc_tblname_chats;
|
|
171 |
global $wplc_tblname_msgs;
|
172 |
$wplc_tblname_chats = $wpdb->prefix . "wplc_chat_sessions";
|
173 |
$wplc_tblname_msgs = $wpdb->prefix . "wplc_chat_msgs";
|
174 |
-
$wplc_version = "4.2.
|
175 |
|
176 |
define('WPLC_BASIC_PLUGIN_DIR', dirname(__FILE__));
|
177 |
define('WPLC_BASIC_PLUGIN_URL', plugins_url() . "/wp-live-chat-support/");
|
@@ -831,7 +834,9 @@ function wplc_admin_menu_layout() {
|
|
831 |
</div>
|
832 |
<?php
|
833 |
}
|
834 |
-
|
|
|
|
|
835 |
?>
|
836 |
<div class='error below-h1'>
|
837 |
|
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.12
|
7 |
Author: WP-LiveChat
|
8 |
Author URI: http://www.wp-livechat.com
|
9 |
*/
|
10 |
|
11 |
|
12 |
+
/* 4.2.12 2015-03-24 - Low Priority
|
13 |
+
* Bug Fix: Warning to update showing erroneously
|
14 |
+
*
|
15 |
+
* 4.2.11 2015-03-23 - Low Priority
|
16 |
* Bug Fix: Bug in the banned user functionality
|
17 |
* Enhancement: Stying improvement on the Live Chat dashboard
|
18 |
* Enhancement: Strings are handled better for localization plugins (Pro)
|
174 |
global $wplc_tblname_msgs;
|
175 |
$wplc_tblname_chats = $wpdb->prefix . "wplc_chat_sessions";
|
176 |
$wplc_tblname_msgs = $wpdb->prefix . "wplc_chat_msgs";
|
177 |
+
$wplc_version = "4.2.12";
|
178 |
|
179 |
define('WPLC_BASIC_PLUGIN_DIR', dirname(__FILE__));
|
180 |
define('WPLC_BASIC_PLUGIN_URL', plugins_url() . "/wp-live-chat-support/");
|
834 |
</div>
|
835 |
<?php
|
836 |
}
|
837 |
+
$wplc_ver = str_replace('.', '', $wplc_pro_version);
|
838 |
+
$wplc_ver = intval($wplc_ver);
|
839 |
+
if ($wplc_ver <= 444) {
|
840 |
?>
|
841 |
<div class='error below-h1'>
|
842 |
|