WP Live Chat Support - Version 6.0.07

Version Description

  • 2016-03-11 - High priority =
  • Bug fix - agent status was lost when saving settings
Download this release

Release Info

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

Code changes from version 6.0.06 to 6.0.07

Files changed (2) hide show
  1. readme.txt +3 -0
  2. wp-live-chat-support.php +6 -3
readme.txt CHANGED
@@ -223,6 +223,9 @@ It is highly recommended that you upgrade to WP Live Chat Support version 4.1.4
223
 
224
  == Changelog ==
225
 
 
 
 
226
  = 6.0.06 - 2016-03-07 - Medium priority =
227
  * More stable fix for the menu item bug that has been experienced lately
228
 
223
 
224
  == Changelog ==
225
 
226
+ = 6.0.07 - 2016-03-11 - High priority =
227
+ * Bug fix - agent status was lost when saving settings
228
+
229
  = 6.0.06 - 2016-03-07 - Medium priority =
230
  * More stable fix for the menu item bug that has been experienced lately
231
 
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.0.06
7
  Author: WP-LiveChat
8
  Author URI: http://www.wp-livechat.com
9
  Text Domain: wplivechat
@@ -11,6 +11,9 @@
11
  */
12
 
13
  /*
 
 
 
14
  * 6.0.06 - 2016-03-04 - Medium priority
15
  * More stable fix for the menu item bug that has been experienced lately
16
  *
@@ -329,7 +332,7 @@ global $wplc_tblname_offline_msgs;
329
  $wplc_tblname_offline_msgs = $wpdb->prefix . "wplc_offline_messages";
330
  $wplc_tblname_chats = $wpdb->prefix . "wplc_chat_sessions";
331
  $wplc_tblname_msgs = $wpdb->prefix . "wplc_chat_msgs";
332
- $wplc_version = "6.0.06";
333
 
334
  define('WPLC_BASIC_PLUGIN_DIR', dirname(__FILE__));
335
  define('WPLC_BASIC_PLUGIN_URL', plugins_url() . "/wp-live-chat-support/");
@@ -2686,7 +2689,7 @@ function wplc_head_basic() {
2686
  if(isset($_POST['wplc_animation'])){ $wplc_data['wplc_animation'] = esc_attr($_POST['wplc_animation']); }
2687
  if(isset($_POST['wplc_theme'])){ $wplc_data['wplc_theme'] = esc_attr($_POST['wplc_theme']); }
2688
 
2689
- if(isset($_POST['wplc_agent_select'])) {
2690
  $user_array = get_users(array(
2691
  'meta_key' => 'wplc_ma_agent',
2692
  ));
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.0.07
7
  Author: WP-LiveChat
8
  Author URI: http://www.wp-livechat.com
9
  Text Domain: wplivechat
11
  */
12
 
13
  /*
14
+ * 6.0.07 - 2016-03-11 - High priority
15
+ * Bug fix - agent status was lost when saving settings.
16
+ *
17
  * 6.0.06 - 2016-03-04 - Medium priority
18
  * More stable fix for the menu item bug that has been experienced lately
19
  *
332
  $wplc_tblname_offline_msgs = $wpdb->prefix . "wplc_offline_messages";
333
  $wplc_tblname_chats = $wpdb->prefix . "wplc_chat_sessions";
334
  $wplc_tblname_msgs = $wpdb->prefix . "wplc_chat_msgs";
335
+ $wplc_version = "6.0.07";
336
 
337
  define('WPLC_BASIC_PLUGIN_DIR', dirname(__FILE__));
338
  define('WPLC_BASIC_PLUGIN_URL', plugins_url() . "/wp-live-chat-support/");
2689
  if(isset($_POST['wplc_animation'])){ $wplc_data['wplc_animation'] = esc_attr($_POST['wplc_animation']); }
2690
  if(isset($_POST['wplc_theme'])){ $wplc_data['wplc_theme'] = esc_attr($_POST['wplc_theme']); }
2691
 
2692
+ if(isset($_POST['wplc_agent_select']) && $_POST['wplc_agent_select'] != "") {
2693
  $user_array = get_users(array(
2694
  'meta_key' => 'wplc_ma_agent',
2695
  ));