We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02ed9b6 commit a404967Copy full SHA for a404967
wc-am-client.php
@@ -441,7 +441,8 @@ public function activation() {
441
442
if ( get_option( $this->data_key ) === false || $instance_exists === false ) {
443
if ( $instance_exists === false ) {
444
- update_option( $this->wc_am_instance_key, wp_generate_password( 12, false ) );
+ $this->wc_am_instance_id = wp_generate_password( 12, false );
445
+ update_option( $this->wc_am_instance_key, $this->wc_am_instance_id );
446
}
447
448
update_option( $this->wc_am_deactivate_checkbox_key, 'on' );
0 commit comments