WP Live Chat Support - Version 8.0.17

Version Description

  • 2018-10-19 - Low priority =
  • Removes WP User Avatar option from settings page. This was incorrectly included in the last release
Download this release

Release Info

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

Code changes from version 8.0.16 to 8.0.17

includes/settings_page.php CHANGED
@@ -375,7 +375,7 @@ if (get_option("WPLC_HIDE_CHAT") == true) {
375
  </small>
376
  </td>
377
  </tr>
378
- <tr>
379
  <td width='300'>
380
  <?php _e("Avatar","wplivechat") ?> <i class="fa fa-question-circle wplc_light_grey wplc_settings_tooltip" title="<?php _e("Choose which picture to use as your avatar.","wplivechat") ?>"></i>
381
  </td>
@@ -385,7 +385,7 @@ if (get_option("WPLC_HIDE_CHAT") == true) {
385
  <option value="wp_avatar" <?php echo (isset($wplc_settings['wplc_avatar_source']) && $wplc_settings['wplc_avatar_source'] == 'wp_avatar') ? 'selected' : ''; ?>>WP User Avatar</option>
386
  </select>
387
  </td>
388
- </tr>
389
  <!-- Chat Icon-->
390
  <tr>
391
  <td width='300' valign='top'>
375
  </small>
376
  </td>
377
  </tr>
378
+ <!--<tr>
379
  <td width='300'>
380
  <?php _e("Avatar","wplivechat") ?> <i class="fa fa-question-circle wplc_light_grey wplc_settings_tooltip" title="<?php _e("Choose which picture to use as your avatar.","wplivechat") ?>"></i>
381
  </td>
385
  <option value="wp_avatar" <?php echo (isset($wplc_settings['wplc_avatar_source']) && $wplc_settings['wplc_avatar_source'] == 'wp_avatar') ? 'selected' : ''; ?>>WP User Avatar</option>
386
  </select>
387
  </td>
388
+ </tr>-->
389
  <!-- Chat Icon-->
390
  <tr>
391
  <td width='300' valign='top'>
readme.txt CHANGED
@@ -241,6 +241,9 @@ We have patched the PHPMailer vulnerability. Please update to version 7.0.02.
241
 
242
  == Changelog ==
243
 
 
 
 
244
  = 8.0.16 - 2018-10-18 - Low priority =
245
  * Fixed undefined 'wplc_user_avatars' not defined error on frontend
246
 
@@ -248,7 +251,7 @@ We have patched the PHPMailer vulnerability. Please update to version 7.0.02.
248
  * Added WP User Avatar integration
249
  * Added jQuery 3 compatibility as per WordPress.org guidelines
250
  * Added auto hide of chat ended prompt on close or restart
251
- * Fixed a possible injection issue within the notification control
252
  * Fixed Gutenberg and Yoast compatibility issue
253
  * Fixed minor issue with rest storage module
254
  * Fixed minor styling issue with popup dashbaord
241
 
242
  == Changelog ==
243
 
244
+ = 8.0.17 - 2018-10-19 - Low priority =
245
+ * Removes WP User Avatar option from settings page. This was incorrectly included in the last release
246
+
247
  = 8.0.16 - 2018-10-18 - Low priority =
248
  * Fixed undefined 'wplc_user_avatars' not defined error on frontend
249
 
251
  * Added WP User Avatar integration
252
  * Added jQuery 3 compatibility as per WordPress.org guidelines
253
  * Added auto hide of chat ended prompt on close or restart
254
+ * Fixed a possible injection issue within the notification control (Thanks to Nico from serhack.me)
255
  * Fixed Gutenberg and Yoast compatibility issue
256
  * Fixed minor issue with rest storage module
257
  * Fixed minor styling issue with popup dashbaord
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.
6
- Version: 8.0.16
7
  Author: WP-LiveChat
8
  Author URI: http://www.wp-livechat.com
9
  Text Domain: wplivechat
@@ -11,6 +11,9 @@
11
  */
12
 
13
  /**
 
 
 
14
  * 8.0.16 - 2018-10-18 - Low priority
15
  * Fixed undefined 'wplc_user_avatars' not defined error on frontend
16
  *
@@ -18,7 +21,7 @@
18
  * Added WP User Avatar integration
19
  * Added jQuery 3 compatibility as per WordPress.org guidelines
20
  * Added auto hide of chat ended prompt on close or restart
21
- * Fixed a possible injection issue within the notification control
22
  * Fixed Gutenberg and Yoast compatibility issue
23
  * Fixed minor issue with rest storage module
24
  * Fixed minor styling issue with popup dashbaord
@@ -691,7 +694,7 @@ global $debug_start;
691
  $wplc_tblname_offline_msgs = $wpdb->prefix . "wplc_offline_messages";
692
  $wplc_tblname_chats = $wpdb->prefix . "wplc_chat_sessions";
693
  $wplc_tblname_msgs = $wpdb->prefix . "wplc_chat_msgs";
694
- $wplc_version = "8.0.16";
695
 
696
  define('WPLC_BASIC_PLUGIN_DIR', dirname(__FILE__));
697
  define('WPLC_BASIC_PLUGIN_URL', plugins_url( '/', __FILE__ ) );
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.
6
+ Version: 8.0.17
7
  Author: WP-LiveChat
8
  Author URI: http://www.wp-livechat.com
9
  Text Domain: wplivechat
11
  */
12
 
13
  /**
14
+ * 8.0.17 - 2018-10-19 - Low priority
15
+ * Removes WP User Avatar option from settings page. This was incorrectly included in the last release.
16
+ *
17
  * 8.0.16 - 2018-10-18 - Low priority
18
  * Fixed undefined 'wplc_user_avatars' not defined error on frontend
19
  *
21
  * Added WP User Avatar integration
22
  * Added jQuery 3 compatibility as per WordPress.org guidelines
23
  * Added auto hide of chat ended prompt on close or restart
24
+ * Fixed a possible injection issue within the notification control (Thanks to Nico from https://serhack.me)
25
  * Fixed Gutenberg and Yoast compatibility issue
26
  * Fixed minor issue with rest storage module
27
  * Fixed minor styling issue with popup dashbaord
694
  $wplc_tblname_offline_msgs = $wpdb->prefix . "wplc_offline_messages";
695
  $wplc_tblname_chats = $wpdb->prefix . "wplc_chat_sessions";
696
  $wplc_tblname_msgs = $wpdb->prefix . "wplc_chat_msgs";
697
+ $wplc_version = "8.0.17";
698
 
699
  define('WPLC_BASIC_PLUGIN_DIR', dirname(__FILE__));
700
  define('WPLC_BASIC_PLUGIN_URL', plugins_url( '/', __FILE__ ) );