Skip to content

Commit

Permalink
fix: typo in Licenser.php
Browse files Browse the repository at this point in the history
Fixes a typo that tries to display a non-existing string.
  • Loading branch information
HardeepAsrani authored Apr 29, 2024
1 parent bc9a1f4 commit 3a5a763
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Modules/Licenser.php
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ public function license_view() {
$value = $this->license_key;

$activate_string = apply_filters( $this->product->get_key() . '_lc_activate_string', Loader::$labels['licenser']['activate'] );
$deactivate_string = apply_filters( $this->product->get_key() . '_lc_deactivate_string', Loader::$labels['licenser']['deactivateactivate'] );
$deactivate_string = apply_filters( $this->product->get_key() . '_lc_deactivate_string', Loader::$labels['licenser']['deactivate'] );
$valid_string = apply_filters( $this->product->get_key() . '_lc_valid_string', Loader::$labels['licenser']['valid'] );
$invalid_string = apply_filters( $this->product->get_key() . '_lc_invalid_string', Loader::$labels['licenser']['invalid'] );
$license_message = apply_filters( $this->product->get_key() . '_lc_license_message', Loader::$labels['licenser']['notice'] );
Expand Down

0 comments on commit 3a5a763

Please sign in to comment.