WP Live Chat Support - Version 9.0.11

Version Description

  • 2020-07-30 =
  • Fix error on update plugin process.
Download this release

Release Info

Developer wpdev3cx
Plugin Icon 128x128 WP Live Chat Support
Version 9.0.11
Comparing to
See all releases

Code changes from version 9.0.10 to 9.0.11

changelog.txt CHANGED
@@ -1,3 +1,6 @@
 
 
 
1
  = 9.0.10 - 2020-07-29 =
2
  * Fix mixed content issues on visitors' chat.
3
 
1
+ = 9.0.11 - 2020-07-30 =
2
+ * Fix error on update plugin process.
3
+
4
  = 9.0.10 - 2020-07-29 =
5
  * Fix mixed content issues on visitors' chat.
6
 
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.0.10");
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.0.11");
13
  define('WPLC_PLUGIN_DIR', dirname(__FILE__));
14
  define('WPLC_PLUGIN_URL', wplc_plugins_url( '/', __FILE__ ) );
15
  define('WPLC_PLUGIN', plugin_basename( __FILE__ ) );
css/vendor/bootstrap/{wplc_bootstrap_9_0_9.css → wplc_bootstrap_9_0_11.css} RENAMED
File without changes
includes/wplc_updater.php CHANGED
@@ -43,6 +43,7 @@ class TCXUpdater {
43
  }
44
  }
45
  update_option( "wplc_current_version", WPLC_PLUGIN_VERSION );
 
46
  }
47
 
48
  public function wplc_migrate_quick_responses( $dbSettings, $wplc_settings ) {
43
  }
44
  }
45
  update_option( "wplc_current_version", WPLC_PLUGIN_VERSION );
46
+ TCXSettings::initSettings();
47
  }
48
 
49
  public function wplc_migrate_quick_responses( $dbSettings, $wplc_settings ) {
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: live chat, live support, chat plugin, live help, wordpress live chat, chat
4
  Requires at least: 5.3
5
  Tested up to: 5.4.2
6
  Requires PHP: 5.4
7
- Stable tag: 9.0.10
8
  License: GPLv2
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
10
  Text Domain: wp-live-chat-support
@@ -159,6 +159,9 @@ If the live chat box still does not appear on your website, please go through th
159
  Huge update with over 300 changes that include: Bugfixes, Vulnerability Fixes & Plugin Security, Plugin Optimization & Rebranding Updates. We suggest you remove any existing installations of this plugin and install 8.1.x fresh.
160
 
161
  == Changelog ==
 
 
 
162
  = 9.0.10 - 2020-07-29 =
163
  * Fix mixed content issues on visitors' chat.
164
 
4
  Requires at least: 5.3
5
  Tested up to: 5.4.2
6
  Requires PHP: 5.4
7
+ Stable tag: 9.0.11
8
  License: GPLv2
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
10
  Text Domain: wp-live-chat-support
159
  Huge update with over 300 changes that include: Bugfixes, Vulnerability Fixes & Plugin Security, Plugin Optimization & Rebranding Updates. We suggest you remove any existing installations of this plugin and install 8.1.x fresh.
160
 
161
  == Changelog ==
162
+ = 9.0.11 - 2020-07-30 =
163
+ * Fix error on update plugin process.
164
+
165
  = 9.0.10 - 2020-07-29 =
166
  * Fix mixed content issues on visitors' chat.
167
 
wp-live-chat-support.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: WP-Live Chat by 3CX
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 WP-Live Chat by 3CX.
6
- Version: 9.0.10
7
  Author: 3CX
8
  Author URI: https://www.3cx.com/wp-live-chat/
9
  Domain Path: /languages
@@ -210,7 +210,7 @@ function wplc_init() {
210
  }
211
  ob_start();
212
 
213
- TCXSettings::initSettings();
214
  $wplc_settings = TCXSettings::getSettings();
215
  // Load Languages
216
  $plugin_dir = basename( dirname( __FILE__ ) ) . "/languages/";
3
  Plugin Name: WP-Live Chat by 3CX
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 WP-Live Chat by 3CX.
6
+ Version: 9.0.11
7
  Author: 3CX
8
  Author URI: https://www.3cx.com/wp-live-chat/
9
  Domain Path: /languages
210
  }
211
  ob_start();
212
 
213
+ //TCXSettings::initSettings();
214
  $wplc_settings = TCXSettings::getSettings();
215
  // Load Languages
216
  $plugin_dir = basename( dirname( __FILE__ ) ) . "/languages/";