WP Live Chat Support - Version 4.1.2

Version Description

2014-07-29 = * DB bug fix

Download this release

Release Info

Developer WP-LiveChat
Plugin Icon 128x128 WP Live Chat Support
Version 4.1.2
Comparing to
See all releases

Code changes from version 4.1.1 to 4.1.2

Files changed (2) hide show
  1. readme.txt +9 -4
  2. wp-live-chat-support.php +7 -4
readme.txt CHANGED
@@ -77,10 +77,12 @@ If you're experiencing issues running WP Live Chat Support, please take note of
77
  - The live chat box will only show up on the front end if you are logged in to your wp-admin section.
78
  - The default delay before the live chat box appears is 10 seconds. You can change this on the settings page.
79
  - If you press the "X" within the live chat window on the front end, a cookie will be set that will stop the chat box from showing for another 24 hours.
80
- - If the live chat box still does not appear on your website, please go through the following steps:
81
- - - Please ensure your theme�s footer.php file has the following line before the closing body tag: <?php wp_footer(); ?>
82
- - - Ensure that no other plugins are causing JavaScript errors on your website. This could interfere with the execution of our plugin's JavaScript.
83
- - - If you need more help, please use the [WP Live Chat Support support forum](http://wp-livechat.com/forums/forum/support/) or contact us and we'll get to the bottom of the problem as soon as possible!
 
 
84
 
85
  == Screenshots ==
86
 
@@ -96,6 +98,9 @@ It is highly recommended that you upgrade to version 4.1.1
96
 
97
  == Changelog ==
98
 
 
 
 
99
  = 4.1.1 2014-07-29 =
100
  * Significant performance improvements
101
  * Live chat window will now only show in one window (if user has multiple tabs open on your site)
77
  - The live chat box will only show up on the front end if you are logged in to your wp-admin section.
78
  - The default delay before the live chat box appears is 10 seconds. You can change this on the settings page.
79
  - If you press the "X" within the live chat window on the front end, a cookie will be set that will stop the chat box from showing for another 24 hours.
80
+
81
+ If the live chat box still does not appear on your website, please go through the following steps:
82
+
83
+ - Please ensure your theme's footer.php file has the following line before the closing body tag: <?php wp_footer(); ?>
84
+ - Ensure that no other plugins are causing JavaScript errors on your website. This could interfere with the execution of our plugin's JavaScript.
85
+ - If you need more help, please use the [support forum](http://wp-livechat.com/forums/forum/support/) or contact us and we'll get to the bottom of the problem as soon as possible!
86
 
87
  == Screenshots ==
88
 
98
 
99
  == Changelog ==
100
 
101
+ = 4.1.2 2014-07-29 =
102
+ * DB bug fix
103
+
104
  = 4.1.1 2014-07-29 =
105
  * Significant performance improvements
106
  * Live chat window will now only show in one window (if user has multiple tabs open on your site)
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.1.1
7
  Author: WP-LiveChat
8
  Author URI: http://www.wp-livechat.com
9
  */
10
 
11
 
12
- /* 4.1.1
 
 
 
13
  * Significant performance improvements
14
  * Live chat window will now only show in one window (if user has multiple tabs open on your site)
15
  * You can now see the browser of the live chat user
@@ -36,7 +39,7 @@ global $wplc_tblname_chats;
36
  global $wplc_tblname_msgs;
37
  $wplc_tblname_chats = $wpdb->prefix . "wplc_chat_sessions";
38
  $wplc_tblname_msgs = $wpdb->prefix . "wplc_chat_msgs";
39
- $wplc_version = "4.1.1";
40
 
41
  define('WPLC_BASIC_PLUGIN_DIR',dirname(__FILE__));
42
  define('WPLC_BASIC_PLUGIN_URL',plugins_url()."/wp-live-chat-support/");
@@ -874,7 +877,7 @@ function wplc_handle_db() {
874
  email varchar(700) NOT NULL,
875
  ip varchar(700) NOT NULL,
876
  status int(11) NOT NULL,
877
- session bigint NOT NULL,
878
  url varchar(700) NOT NULL,
879
  last_active_timestamp datetime NOT NULL,
880
  PRIMARY KEY (id)
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.1.2
7
  Author: WP-LiveChat
8
  Author URI: http://www.wp-livechat.com
9
  */
10
 
11
 
12
+ /* 4.1.2
13
+ * DB bug fix
14
+ *
15
+ * 4.1.1
16
  * Significant performance improvements
17
  * Live chat window will now only show in one window (if user has multiple tabs open on your site)
18
  * You can now see the browser of the live chat user
39
  global $wplc_tblname_msgs;
40
  $wplc_tblname_chats = $wpdb->prefix . "wplc_chat_sessions";
41
  $wplc_tblname_msgs = $wpdb->prefix . "wplc_chat_msgs";
42
+ $wplc_version = "4.1.2";
43
 
44
  define('WPLC_BASIC_PLUGIN_DIR',dirname(__FILE__));
45
  define('WPLC_BASIC_PLUGIN_URL',plugins_url()."/wp-live-chat-support/");
877
  email varchar(700) NOT NULL,
878
  ip varchar(700) NOT NULL,
879
  status int(11) NOT NULL,
880
+ session varchar(100) NOT NULL,
881
  url varchar(700) NOT NULL,
882
  last_active_timestamp datetime NOT NULL,
883
  PRIMARY KEY (id)