LiveChat – WP live chat plugin for WordPress - Version 3.3

Version Description

  • get_currentuserinfo function deprecated in WordPress 4.5, replaced to wp_get_current_user function
Download this release

Release Info

Developer livechat
Plugin Icon 128x128 LiveChat – WP live chat plugin for WordPress
Version 3.3
Comparing to
See all releases

Code changes from version 3.2.13 to 3.3

livechat.php CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://www.livechatinc.com/addons/wordpress/
5
  Description: Live chat software for live help, online sales and customer support. This plugin allows to quickly install LiveChat on any WordPress website.
6
  Author: LiveChat
7
  Author URI: http://www.livechatinc.com
8
- Version: 3.2.13
9
  */
10
 
11
  if (is_admin())
5
  Description: Live chat software for live help, online sales and customer support. This plugin allows to quickly install LiveChat on any WordPress website.
6
  Author: LiveChat
7
  Author URI: http://www.livechatinc.com
8
+ Version: 3.2.14
9
  */
10
 
11
  if (is_admin())
plugin_files/helpers/SettingsHelper.class.php CHANGED
@@ -85,8 +85,7 @@ LiveChat::get_instance()->get_helper('TrackingCodeInfo');
85
  <div class="postbox_content">
86
 
87
  <?php
88
- global $current_user;
89
- get_currentuserinfo();
90
 
91
  $fullname = $current_user->user_firstname.' '.$current_user->user_lastname;
92
  $fullname = trim($fullname);
85
  <div class="postbox_content">
86
 
87
  <?php
88
+ $current_user = wp_get_current_user();
 
89
 
90
  $fullname = $current_user->user_firstname.' '.$current_user->user_lastname;
91
  $fullname = trim($fullname);
readme.txt CHANGED
@@ -2,9 +2,9 @@
2
  Contributors: LiveChat
3
  Tags: live support, live chat, live chat software, help desk, help desk software, online ticketing system, ticketing system, online support, ecommerce chat, sales, customer help, customer support, livechat, live support, customer service software, chat plugin, chat, customer service chat, live chat button, live chat plugin, live chat support, live chat tool, live chat widget, live support, live support button, live chat solution
4
 
5
- Stable tag: 3.2.13
6
- Requires at least: 2.8
7
- Tested up to: 4.3
8
 
9
  Live chat and help desk software plugin for Wordpress. Add LiveChat (live chat and help desk software) to your Wordpress.
10
 
@@ -42,6 +42,12 @@ Product requires active LiveChat subscription after 30 days of free trial.
42
 
43
  == Changelog ==
44
 
 
 
 
 
 
 
45
  = 3.2.13 =
46
  * Removed __lc.group from tracking code, updated readme.txt file
47
 
2
  Contributors: LiveChat
3
  Tags: live support, live chat, live chat software, help desk, help desk software, online ticketing system, ticketing system, online support, ecommerce chat, sales, customer help, customer support, livechat, live support, customer service software, chat plugin, chat, customer service chat, live chat button, live chat plugin, live chat support, live chat tool, live chat widget, live support, live support button, live chat solution
4
 
5
+ Stable tag: 3.3
6
+ Requires at least: 3.4
7
+ Tested up to: 4.5
8
 
9
  Live chat and help desk software plugin for Wordpress. Add LiveChat (live chat and help desk software) to your Wordpress.
10
 
42
 
43
  == Changelog ==
44
 
45
+ = 3.3 =
46
+ * get_currentuserinfo function deprecated in WordPress 4.5, replaced to wp_get_current_user function
47
+
48
+ = 3.2.14 =
49
+ * Updated readme.txt file, checked compatibility to Wordpress 4.4.1
50
+
51
  = 3.2.13 =
52
  * Removed __lc.group from tracking code, updated readme.txt file
53