WP Live Chat Support - Version 7.1.01

Version Description

  • 2017-06-18 - Low priority =
  • Small bug fix for agent profiles
Download this release

Release Info

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

Code changes from version 7.1.00 to 7.1.01

images/Thumbs.db DELETED
Binary file
images/poke_group.png ADDED
Binary file
readme.txt CHANGED
@@ -220,7 +220,10 @@ It is highly recommended that you upgrade to WP Live Chat Support version 4.4.0
220
 
221
  == Changelog ==
222
 
223
- = 7.1.00 - 2017-06-15 - Medium priority =
 
 
 
224
  * Modernised the live chat box
225
  * Fixed a bug that caused the wrong agent name to show up in the "typing" element after a chat was transferred
226
  * Other minor bug fixes
220
 
221
  == Changelog ==
222
 
223
+ = 7.1.01 - 2017-06-18 - Low priority =
224
+ * Small bug fix for agent profiles
225
+
226
+ = 7.1.00 - 2017-06-18 - Medium priority =
227
  * Modernised the live chat box
228
  * Fixed a bug that caused the wrong agent name to show up in the "typing" element after a chat was transferred
229
  * Other minor bug fixes
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: 7.1.00
7
  Author: WP-LiveChat
8
  Author URI: http://www.wp-livechat.com
9
  Text Domain: wplivechat
@@ -11,7 +11,10 @@
11
  */
12
 
13
  /**
14
- * 7.1.00 - 2017-06-15 - Medium priority
 
 
 
15
  * Modernised the live chat box
16
  * Fixed a bug that caused the wrong agent name to show up in the "typing" element after a chat was transferred
17
  * Other minor bug fixes
@@ -546,7 +549,7 @@ global $debug_start;
546
  $wplc_tblname_offline_msgs = $wpdb->prefix . "wplc_offline_messages";
547
  $wplc_tblname_chats = $wpdb->prefix . "wplc_chat_sessions";
548
  $wplc_tblname_msgs = $wpdb->prefix . "wplc_chat_msgs";
549
- $wplc_version = "7.1.00";
550
 
551
  define('WPLC_BASIC_PLUGIN_DIR', dirname(__FILE__));
552
  define('WPLC_BASIC_PLUGIN_URL', plugins_url() . "/wp-live-chat-support/");
@@ -2210,9 +2213,9 @@ function wplc_output_box_ajax_new($cid = null) {
2210
  }
2211
  }
2212
 
2213
- $agent_tagline = apply_filters( "wplc_filter_agent_data_agent_tagline", $agent_tagline, $cid, $chat_data, $agent, $wplc_acbc_data, $user_info, $chat_data );
2214
- $agent_bio = apply_filters( "wplc_filter_agent_data_agent_bio", $agent_bio, $cid, $chat_data, $agent, $wplc_acbc_data, $user_info, $chat_data );
2215
- $social_links = apply_filters( "wplc_filter_agent_data_social_links", $social_links, $cid, $chat_data, $agent, $wplc_acbc_data, $user_info, $chat_data);
2216
 
2217
  $ret_msg['agent_data'] = array(
2218
  'email' => md5($user_info->user_email),
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: 7.1.01
7
  Author: WP-LiveChat
8
  Author URI: http://www.wp-livechat.com
9
  Text Domain: wplivechat
11
  */
12
 
13
  /**
14
+ * 7.1.01 - 2017-06-18 - Low priority
15
+ * Small bug fix for agent profiles
16
+ *
17
+ * 7.1.00 - 2017-06-18 - Medium priority
18
  * Modernised the live chat box
19
  * Fixed a bug that caused the wrong agent name to show up in the "typing" element after a chat was transferred
20
  * Other minor bug fixes
549
  $wplc_tblname_offline_msgs = $wpdb->prefix . "wplc_offline_messages";
550
  $wplc_tblname_chats = $wpdb->prefix . "wplc_chat_sessions";
551
  $wplc_tblname_msgs = $wpdb->prefix . "wplc_chat_msgs";
552
+ $wplc_version = "7.1.01";
553
 
554
  define('WPLC_BASIC_PLUGIN_DIR', dirname(__FILE__));
555
  define('WPLC_BASIC_PLUGIN_URL', plugins_url() . "/wp-live-chat-support/");
2213
  }
2214
  }
2215
 
2216
+ $agent_tagline = apply_filters( "wplc_filter_agent_data_agent_tagline", $agent_tagline, $cid, $chat_data, $agent, $wplc_acbc_data, $user_info, $data );
2217
+ $agent_bio = apply_filters( "wplc_filter_agent_data_agent_bio", $agent_bio, $cid, $chat_data, $agent, $wplc_acbc_data, $user_info, $data );
2218
+ $social_links = apply_filters( "wplc_filter_agent_data_social_links", $social_links, $cid, $chat_data, $agent, $wplc_acbc_data, $user_info, $data);
2219
 
2220
  $ret_msg['agent_data'] = array(
2221
  'email' => md5($user_info->user_email),