Changeset 3034663
- Timestamp:
- 02/12/2024 03:06:52 PM (2 years ago)
- Location:
- wp-live-chat-support/trunk
- Files:
-
- 5 edited
-
admin/class-wplc-plugin-settings.php (modified) (1 diff)
-
changelog.txt (modified) (1 diff)
-
config.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
wp-live-chat-support.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-live-chat-support/trunk/admin/class-wplc-plugin-settings.php
r2880474 r3034663 105 105 'powered_by' => '' 106 106 ); 107 $temp_options = get_option('wplc_display_options' );107 $temp_options = get_option('wplc_display_options', array()); 108 108 // force defaults when there is no value 109 109 foreach ($defaults as $k => $v) { -
wp-live-chat-support/trunk/changelog.txt
r2940821 r3034663 1 = 10.0.11 - 2024-02-12 = 2 * Fixed install with WP CLI 3 1 4 = 10.0.10 - 2023-07-20 = 2 5 * Updated Translations -
wp-live-chat-support/trunk/config.php
r2940821 r3034663 1 1 <?php 2 $WPLC_PLUGIN_VERSION='10.0.1 0';2 $WPLC_PLUGIN_VERSION='10.0.11'; -
wp-live-chat-support/trunk/readme.txt
r3028619 r3034663 90 90 91 91 == Changelog == 92 93 = 10.0.11 - 2024-02-12 = 94 * Fixed install with WP CLI 92 95 93 96 = 10.0.10 - 2023-07-20 = -
wp-live-chat-support/trunk/wp-live-chat-support.php
r2940821 r3034663 5 5 Plugin URI: https://www.3cx.com/wp-live-chat/ 6 6 Description: Live chat and voice/video call for web visitors. Setup a free portal account for unlimited agents and then activate the plugin. 7 Version: 10.0.1 07 Version: 10.0.11 8 8 Author: 3CX 9 9 Author URI: https://www.3cx.com/wp-live-chat/ … … 53 53 function post_activate_wplc_plugin( $plugin ) { 54 54 global $WPLC_PLUGIN_VERSION; 55 if ($plugin == plugin_basename( __FILE__ ) ) {55 if ( (!defined('WP_CLI') || ! WP_CLI) && $plugin == plugin_basename( __FILE__ ) ) { 56 56 $plugin_settings = new wplc_Admin_Settings($plugin, $WPLC_PLUGIN_VERSION); 57 57 $config = $plugin_settings->read_config();
Note: See TracChangeset
for help on using the changeset viewer.