WP Live Chat Support - Version 4.3.4

Version Description

Ristretto - 2015-06-26 - Low Priority = * Improvement: 404 errors for images in admin panel fixed * Translation Fix: Mistakes fixed in German Translation file.

Download this release

Release Info

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

Code changes from version 4.3.3 to 4.3.4

css/images/ui-bg_flat_10_000000_40x100.png ADDED
Binary file
css/images/ui-bg_flat_75_ffffff_40x100.png ADDED
Binary file
css/images/ui-bg_glass_65_ffffff_1x400.png ADDED
Binary file
css/images/ui-bg_glass_75_dadada_1x400.png ADDED
Binary file
css/images/ui-bg_glass_75_e6e6e6_1x400.png ADDED
Binary file
css/images/ui-bg_highlight-soft_75_cccccc_1x100.png ADDED
Binary file
css/images/ui-icons_ffffff_256x240.png ADDED
Binary file
functions.php CHANGED
@@ -308,7 +308,7 @@ function wplc_return_user_chat_messages($cid) {
308
  } else {
309
  $class = "wplc-user-message";
310
 
311
- if(isset($_COOKIE['wplc_email']) && $_COOKIE['wplc_email'] != ""){ $wplc_user_gravatar = md5(strtolower(trim($_COOKIE['wplc_email']))); } else { $wplc_user_gravatar = ""; }
312
 
313
  if($wplc_user_gravatar != ""){
314
  $image = "<img src='http://www.gravatar.com/avatar/$wplc_user_gravatar?s=20' />";
@@ -397,7 +397,7 @@ function wplc_return_chat_messages($cid) {
397
  } else {
398
  $class = "wplc-user-message";
399
 
400
- if(isset($_COOKIE['wplc_email']) && $_COOKIE['wplc_email'] != ""){ $wplc_user_gravatar = md5(strtolower(trim($_COOKIE['wplc_email']))); } else { $wplc_user_gravatar = ""; }
401
 
402
  if($wplc_user_gravatar != ""){
403
  $image = "<img src='http://www.gravatar.com/avatar/$wplc_user_gravatar?s=20' />";
308
  } else {
309
  $class = "wplc-user-message";
310
 
311
+ if(isset($_COOKIE['wplc_email']) && $_COOKIE['wplc_email'] != ""){ $wplc_user_gravatar = md5(strtolower(trim(sanitize_text_field($_COOKIE['wplc_email'])))); } else { $wplc_user_gravatar = ""; }
312
 
313
  if($wplc_user_gravatar != ""){
314
  $image = "<img src='http://www.gravatar.com/avatar/$wplc_user_gravatar?s=20' />";
397
  } else {
398
  $class = "wplc-user-message";
399
 
400
+ if(isset($_COOKIE['wplc_email']) && $_COOKIE['wplc_email'] != ""){ $wplc_user_gravatar = md5(strtolower(trim(sanitize_text_field($_COOKIE['wplc_email'])))); } else { $wplc_user_gravatar = ""; }
401
 
402
  if($wplc_user_gravatar != ""){
403
  $image = "<img src='http://www.gravatar.com/avatar/$wplc_user_gravatar?s=20' />";
languages/wplivechat-de_DE.po CHANGED
@@ -535,7 +535,7 @@ msgstr "Benutzer hat das Chat-Fenster maximiert"
535
  #: wp-live-chat-support.php:1140
536
  #@ wplivechat
537
  msgid "User has closed and ended the chat"
538
- msgstr "Benutzer hat das Chat-Fenster geschossen und den Chat beendet"
539
 
540
  #: wp-live-chat-support.php:258
541
  #@ wplivechat
535
  #: wp-live-chat-support.php:1140
536
  #@ wplivechat
537
  msgid "User has closed and ended the chat"
538
+ msgstr "Benutzer hat das Chat-Fenster geschlossen und den Chat beendet"
539
 
540
  #: wp-live-chat-support.php:258
541
  #@ wplivechat
readme.txt CHANGED
@@ -74,6 +74,9 @@ One of the most important tasks of your website is to educate potential customer
74
  * Reduce costs by using live chat on your website with minimum staff
75
  * Learn to understand the pain points of your customers
76
 
 
 
 
77
 
78
  = Translations =
79
  Get a free copy of the WP Live Chat Support Pro version in exchange for translating our plugin!
@@ -174,6 +177,10 @@ It is highly recommended that you upgrade to WP Live Chat Support version 4.1.4
174
 
175
  == Changelog ==
176
 
 
 
 
 
177
  = 4.3.3 2015-06-11 - Low Priority =
178
  * Security enhancements
179
  * New Translations:
74
  * Reduce costs by using live chat on your website with minimum staff
75
  * Learn to understand the pain points of your customers
76
 
77
+ = Have the choice to use your website or our server to host your live chat =
78
+
79
+ You now have the choice to host your live chat on either your own website (using your own resources) or our live chat server (using our resources). Making use of our live chat server will improve your chat's performance by up to 300% and reduce the load on your host. Although we initially built our live chat plugin to be used on your own website and for you to host your own live chat server, we now offer you the ability to make use of an offsite live chat server - this is perfect for users that are on low-level hosting packages, or users that are more concerned about live chat performance and chat security.
80
 
81
  = Translations =
82
  Get a free copy of the WP Live Chat Support Pro version in exchange for translating our plugin!
177
 
178
  == Changelog ==
179
 
180
+ = 4.3.4 Ristretto - 2015-06-26 - Low Priority =
181
+ * Improvement: 404 errors for images in admin panel fixed
182
+ * Translation Fix: Mistakes fixed in German Translation file.
183
+
184
  = 4.3.3 2015-06-11 - Low Priority =
185
  * Security enhancements
186
  * New Translations:
wp-live-chat-support.php CHANGED
@@ -3,13 +3,17 @@
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: 4.3.3
7
  Author: WP-LiveChat
8
  Author URI: http://www.wp-livechat.com
9
  */
10
 
11
 
12
- /* 4.3.3 2015-06-11 - Low Priority
 
 
 
 
13
  * Security enhancements
14
  * New Translations:
15
  * Polish (Thank you Sebastian Kajzer)
@@ -81,7 +85,7 @@
81
  * Code Improvement: jQuery Cookie updated to the latest version
82
  * Code Improvement: More Live Chat strings are now translatable
83
  * New Live Chat Translation added:
84
- * Spanish (Thank you Ana Ayel�n Mart�nez)
85
  *
86
  *
87
  * 4.2.5 2015-01-21 - Low Priority
@@ -198,7 +202,7 @@ global $wplc_tblname_chats;
198
  global $wplc_tblname_msgs;
199
  $wplc_tblname_chats = $wpdb->prefix . "wplc_chat_sessions";
200
  $wplc_tblname_msgs = $wpdb->prefix . "wplc_chat_msgs";
201
- $wplc_version = "4.3.03";
202
 
203
  define('WPLC_BASIC_PLUGIN_DIR', dirname(__FILE__));
204
  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: 4.3.4
7
  Author: WP-LiveChat
8
  Author URI: http://www.wp-livechat.com
9
  */
10
 
11
 
12
+ /* 4.3.4 Ristretto - 2015-06-26 - Low Priority
13
+ * Improvement: 404 errors for images in admin panel fixed
14
+ * Translation Fix: Mistakes fixed in German Translation file.
15
+ *
16
+ * 4.3.3 2015-06-11 - Low Priority
17
  * Security enhancements
18
  * New Translations:
19
  * Polish (Thank you Sebastian Kajzer)
85
  * Code Improvement: jQuery Cookie updated to the latest version
86
  * Code Improvement: More Live Chat strings are now translatable
87
  * New Live Chat Translation added:
88
+ * Spanish (Thank you Ana Ayel�n Mart�nez)
89
  *
90
  *
91
  * 4.2.5 2015-01-21 - Low Priority
202
  global $wplc_tblname_msgs;
203
  $wplc_tblname_chats = $wpdb->prefix . "wplc_chat_sessions";
204
  $wplc_tblname_msgs = $wpdb->prefix . "wplc_chat_msgs";
205
+ $wplc_version = "4.3.04";
206
 
207
  define('WPLC_BASIC_PLUGIN_DIR', dirname(__FILE__));
208
  define('WPLC_BASIC_PLUGIN_URL', plugins_url() . "/wp-live-chat-support/");