WP Live Chat Support - Version 9.4.2

Version Description

  • 2022-04-15 =
  • Fixed issue with path inclusion
Download this release

Release Info

Developer wordpress3cx
Plugin Icon 128x128 WP Live Chat Support
Version 9.4.2
Comparing to
See all releases

Code changes from version 9.4.1 to 9.4.2

changelog.txt CHANGED
@@ -1,3 +1,6 @@
 
 
 
1
  = 9.4.1 - 2021-11-03 =
2
  * Fixed issue on sound notification played even if it is disabled on settings.
3
  * Fixed issue on Operation Hours related to caching.
1
+ = 9.4.2 - 2022-04-15 =
2
+ * Fixed issue with path inclusion
3
+
4
  = 9.4.1 - 2021-11-03 =
5
  * Fixed issue on sound notification played even if it is disabled on settings.
6
  * Fixed issue on Operation Hours related to caching.
config.php CHANGED
@@ -9,7 +9,7 @@ if ( ! defined( 'ABSPATH' ) ) {
9
 
10
  define('WPLC_MIN_WP_VERSION', "5.3");
11
  define('WPLC_MIN_PHP_VERSION', "5.4");
12
- define('WPLC_PLUGIN_VERSION', "9.4.1");
13
  define('WPLC_PLUGIN_DIR', dirname(__FILE__));
14
  define('WPLC_PLUGIN_URL', wplc_plugins_url( '/', __FILE__ ) );
15
  define('WPLC_PLUGIN', plugin_basename( __FILE__ ) );
9
 
10
  define('WPLC_MIN_WP_VERSION', "5.3");
11
  define('WPLC_MIN_PHP_VERSION', "5.4");
12
+ define('WPLC_PLUGIN_VERSION', "9.4.2");
13
  define('WPLC_PLUGIN_DIR', dirname(__FILE__));
14
  define('WPLC_PLUGIN_URL', wplc_plugins_url( '/', __FILE__ ) );
15
  define('WPLC_PLUGIN', plugin_basename( __FILE__ ) );
includes/helpers/utils_helper.php CHANGED
@@ -263,7 +263,9 @@ class TCXUtilsHelper {
263
 
264
  public static function evaluate_php_template( $path, $args ) {
265
  foreach ( $args as $key => $value ) {
266
- ${$key} = $value;
 
 
267
  }
268
 
269
  ob_start();
263
 
264
  public static function evaluate_php_template( $path, $args ) {
265
  foreach ( $args as $key => $value ) {
266
+ if ($key!='path' && $key!='args'){
267
+ ${$key} = $value;
268
+ }
269
  }
270
 
271
  ob_start();
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: chat plugin, live chat, live help, live support, wordpress live chat
4
  Requires at least: 5.3
5
  Tested up to: 5.8
6
  Requires PHP: 5.4
7
- Stable tag: 9.4.1
8
  License: GPLv2
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
10
  Text Domain: wp-live-chat-support
@@ -139,6 +139,9 @@ Huge update with over 300 changes that include: Bugfixes, Vulnerability Fixes &
139
 
140
  == Changelog ==
141
 
 
 
 
142
  = 9.4.1 - 2021-11-03 =
143
  * Fixed issue on sound notification played even if it is disabled on settings.
144
  * Fixed issue on Operation Hours related to caching.
4
  Requires at least: 5.3
5
  Tested up to: 5.8
6
  Requires PHP: 5.4
7
+ Stable tag: 9.4.2
8
  License: GPLv2
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
10
  Text Domain: wp-live-chat-support
139
 
140
  == Changelog ==
141
 
142
+ = 9.4.2 - 2022-04-15 =
143
+ * Fixed issue with path inclusion
144
+
145
  = 9.4.1 - 2021-11-03 =
146
  * Fixed issue on sound notification played even if it is disabled on settings.
147
  * Fixed issue on Operation Hours related to caching.
wp-live-chat-support.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: 3CX Live Chat
4
  Plugin URI: https://www.3cx.com/wp-live-chat/
5
  Description: The easiest to use website live chat plugin. Let your visitors chat with you and increase sales conversion rates with 3CX Live Chat.
6
- Version: 9.4.1
7
  Author: 3CX
8
  Author URI: https://www.3cx.com/wp-live-chat/
9
  Domain Path: /languages
3
  Plugin Name: 3CX Live Chat
4
  Plugin URI: https://www.3cx.com/wp-live-chat/
5
  Description: The easiest to use website live chat plugin. Let your visitors chat with you and increase sales conversion rates with 3CX Live Chat.
6
+ Version: 9.4.2
7
  Author: 3CX
8
  Author URI: https://www.3cx.com/wp-live-chat/
9
  Domain Path: /languages