WP Live Chat Support - Version 4.4.4

Version Description

  • 2015-07-20 - Low Priority =
  • Bug Fix: Big fixed that would cause the live chat to timeout during a conversation
Download this release

Release Info

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

Code changes from version 4.4.3 to 4.4.4

Files changed (3) hide show
  1. functions.php +1 -1
  2. readme.txt +3 -1
  3. wp-live-chat-support.php +6 -4
functions.php CHANGED
@@ -865,7 +865,7 @@ function wplc_update_chat_statuses() {
865
  }
866
  }
867
  else if ($result->status == 3) {
868
- if ((time() - $timestamp) >= 30) { // 30 seconds
869
  wplc_change_chat_status($id,1);
870
  }
871
  }
865
  }
866
  }
867
  else if ($result->status == 3) {
868
+ if ((time() - $timestamp) >= 300) { // 30 seconds
869
  wplc_change_chat_status($id,1);
870
  }
871
  }
readme.txt CHANGED
@@ -183,11 +183,13 @@ It is highly recommended that you upgrade to WP Live Chat Support version 4.1.4
183
 
184
  == Changelog ==
185
 
 
 
 
186
  = 4.4.3 - 2015-07-16 - Low Priority =
187
  * Bug Fix: Ajax URL undefined in some versions of WordPress
188
  * Improvement: Warning messages limited to the Settings page only
189
 
190
-
191
  = 4.4.2 - 2015-07-13 - Low Priority =
192
  * Improvement: Gravatar images will load on sites using SSL without any issues
193
  * Improvement: Hungarian live chat translation file name fixed
183
 
184
  == Changelog ==
185
 
186
+ = 4.4.4 - 2015-07-20 - Low Priority =
187
+ * Bug Fix: Big fixed that would cause the live chat to timeout during a conversation
188
+
189
  = 4.4.3 - 2015-07-16 - Low Priority =
190
  * Bug Fix: Ajax URL undefined in some versions of WordPress
191
  * Improvement: Warning messages limited to the Settings page only
192
 
 
193
  = 4.4.2 - 2015-07-13 - Low Priority =
194
  * Improvement: Gravatar images will load on sites using SSL without any issues
195
  * Improvement: Hungarian live chat translation file name fixed
wp-live-chat-support.php CHANGED
@@ -3,17 +3,19 @@
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.4.3
7
  Author: WP-LiveChat
8
  Author URI: http://www.wp-livechat.com
9
  */
10
 
11
 
12
- /* 4.4.3 - 2015-07-16 - Low Priority
 
 
 
13
  * Bug Fix: Ajax URL undefined in some versions of WordPress
14
  * Improvement: Warning messages limited to the Settings page only
15
  *
16
- *
17
  * 4.4.2 - 2015-07-13 - Low Priority
18
  * Improvement: Gravatar images will load on sites using SSL without any issues
19
  * Improvement: Hungarian live chat translation file name fixed
@@ -222,7 +224,7 @@ global $wplc_tblname_chats;
222
  global $wplc_tblname_msgs;
223
  $wplc_tblname_chats = $wpdb->prefix . "wplc_chat_sessions";
224
  $wplc_tblname_msgs = $wpdb->prefix . "wplc_chat_msgs";
225
- $wplc_version = "4.4.03";
226
 
227
  define('WPLC_BASIC_PLUGIN_DIR', dirname(__FILE__));
228
  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.4.4
7
  Author: WP-LiveChat
8
  Author URI: http://www.wp-livechat.com
9
  */
10
 
11
 
12
+ /* 4.4.4 - 2015-07-20 - Low Priority
13
+ * Bug Fix: Big fixed that would cause the live chat to timeout during a conversation
14
+ *
15
+ * 4.4.3 - 2015-07-16 - Low Priority
16
  * Bug Fix: Ajax URL undefined in some versions of WordPress
17
  * Improvement: Warning messages limited to the Settings page only
18
  *
 
19
  * 4.4.2 - 2015-07-13 - Low Priority
20
  * Improvement: Gravatar images will load on sites using SSL without any issues
21
  * Improvement: Hungarian live chat translation file name fixed
224
  global $wplc_tblname_msgs;
225
  $wplc_tblname_chats = $wpdb->prefix . "wplc_chat_sessions";
226
  $wplc_tblname_msgs = $wpdb->prefix . "wplc_chat_msgs";
227
+ $wplc_version = "4.4.04";
228
 
229
  define('WPLC_BASIC_PLUGIN_DIR', dirname(__FILE__));
230
  define('WPLC_BASIC_PLUGIN_URL', plugins_url() . "/wp-live-chat-support/");