WP Live Chat Support - Version 6.1.02

Version Description

  • 2016-04-13 - Low Priority =
  • Tested on WordPress 4.5
  • Fixed a bug that sent offline messages to the wrong email address
Download this release

Release Info

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

Code changes from version 6.1.01 to 6.1.02

Files changed (3) hide show
  1. functions.php +4 -9
  2. readme.txt +5 -1
  3. wp-live-chat-support.php +6 -2
functions.php CHANGED
@@ -1083,18 +1083,13 @@ function wplc_filter_control_mail_body($header,$msg) {
1083
  */
1084
  function wplcmail($reply_to,$reply_to_name,$subject,$msg) {
1085
 
1086
- $wplc_pro_settings = get_option("WPLC_PRO_SETTINGS");
1087
-
1088
  if(isset($wplc_pro_settings['wplc_pro_chat_email_address'])){
1089
  $email_address = $wplc_pro_settings['wplc_pro_chat_email_address'];
1090
- } else {
1091
- $wplc_pro_settings = get_option("WPLC_SETTINGS");
1092
- if(isset($wplc_pro_settings['wplc_pro_chat_email_address'])){
1093
- $email_address = $wplc_pro_settings['wplc_pro_chat_email_address'];
1094
- }else{
1095
- $email_address = get_option('admin_email');
1096
- }
1097
  }
 
1098
  $email_address = explode(',', $email_address);
1099
 
1100
  if(get_option("wplc_mail_type") == "wp_mail" || !get_option('wplc_mail_type')){
1083
  */
1084
  function wplcmail($reply_to,$reply_to_name,$subject,$msg) {
1085
 
1086
+ $wplc_pro_settings = get_option("WPLC_SETTINGS");
 
1087
  if(isset($wplc_pro_settings['wplc_pro_chat_email_address'])){
1088
  $email_address = $wplc_pro_settings['wplc_pro_chat_email_address'];
1089
+ }else{
1090
+ $email_address = get_option('admin_email');
 
 
 
 
 
1091
  }
1092
+
1093
  $email_address = explode(',', $email_address);
1094
 
1095
  if(get_option("wplc_mail_type") == "wp_mail" || !get_option('wplc_mail_type')){
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: WP-LiveChat, NickDuncan, CodeCabin_, Jarryd Long
3
  Donate link: http://www.wp-livechat.com
4
  Tags: live chat, live support, chat plugin, live help, wordpress chat, customer support, chat, chat services, live chat plugin, live support plugin, live chat support plugin, wordpress live chat, wordpress live chat plugin, live chat software, live chat services, chat plugin, support plugin, support, chat software, chat online, visitor chat, chat, free chat, free live chat, customer support, online support, live help, live chat help, chat widget, live chat widget
5
  Requires at least: 3.8
6
- Tested up to: 4.4.2
7
  Stable tag: trunk
8
  License: GPLv2
9
 
@@ -205,6 +205,10 @@ It is highly recommended that you upgrade to WP Live Chat Support version 4.1.4
205
 
206
  == Changelog ==
207
 
 
 
 
 
208
  = 6.1.01 - 2016-04-07 - Low Priority =
209
  * You can now delete inidividual offline messages from your history
210
  * Code improvements done to the way scripts are loaded when displaying the chat
3
  Donate link: http://www.wp-livechat.com
4
  Tags: live chat, live support, chat plugin, live help, wordpress chat, customer support, chat, chat services, live chat plugin, live support plugin, live chat support plugin, wordpress live chat, wordpress live chat plugin, live chat software, live chat services, chat plugin, support plugin, support, chat software, chat online, visitor chat, chat, free chat, free live chat, customer support, online support, live help, live chat help, chat widget, live chat widget
5
  Requires at least: 3.8
6
+ Tested up to: 4.5
7
  Stable tag: trunk
8
  License: GPLv2
9
 
205
 
206
  == Changelog ==
207
 
208
+ = 6.1.02 - 2016-04-13 - Low Priority =
209
+ * Tested on WordPress 4.5
210
+ * Fixed a bug that sent offline messages to the wrong email address
211
+
212
  = 6.1.01 - 2016-04-07 - Low Priority =
213
  * You can now delete inidividual offline messages from your history
214
  * Code improvements done to the way scripts are loaded when displaying the chat
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.1.01
7
  Author: WP-LiveChat
8
  Author URI: http://www.wp-livechat.com
9
  Text Domain: wplivechat
@@ -11,6 +11,10 @@
11
  */
12
 
13
  /*
 
 
 
 
14
  * 6.1.01 - 2016-04-07 - Low Priority
15
  * You can now delete inidividual offline messages from your history
16
  * Code improvements done to the way scripts are loaded when displaying the chat
@@ -366,7 +370,7 @@ global $wplc_tblname_offline_msgs;
366
  $wplc_tblname_offline_msgs = $wpdb->prefix . "wplc_offline_messages";
367
  $wplc_tblname_chats = $wpdb->prefix . "wplc_chat_sessions";
368
  $wplc_tblname_msgs = $wpdb->prefix . "wplc_chat_msgs";
369
- $wplc_version = "6.1.01";
370
 
371
  define('WPLC_BASIC_PLUGIN_DIR', dirname(__FILE__));
372
  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: 6.1.02
7
  Author: WP-LiveChat
8
  Author URI: http://www.wp-livechat.com
9
  Text Domain: wplivechat
11
  */
12
 
13
  /*
14
+ * 6.1.02 - 2016-04-13 - Low Priority
15
+ * Tested on WordPress 4.5
16
+ * Fixed a bug that sent offline messages to the wrong email address
17
+ *
18
  * 6.1.01 - 2016-04-07 - Low Priority
19
  * You can now delete inidividual offline messages from your history
20
  * Code improvements done to the way scripts are loaded when displaying the chat
370
  $wplc_tblname_offline_msgs = $wpdb->prefix . "wplc_offline_messages";
371
  $wplc_tblname_chats = $wpdb->prefix . "wplc_chat_sessions";
372
  $wplc_tblname_msgs = $wpdb->prefix . "wplc_chat_msgs";
373
+ $wplc_version = "6.1.02";
374
 
375
  define('WPLC_BASIC_PLUGIN_DIR', dirname(__FILE__));
376
  define('WPLC_BASIC_PLUGIN_URL', plugins_url() . "/wp-live-chat-support/");