Skip to content

Commit

Permalink
chore: update Two Factor to 0.11.0 (#6123)
Browse files Browse the repository at this point in the history
* chore: update `Two Factor` to 0.11.0

* fix: BREAKING-841: disable U2F provider
  • Loading branch information
sjinks authored Feb 4, 2025
1 parent c2f960f commit df73362
Show file tree
Hide file tree
Showing 16 changed files with 1,099 additions and 404 deletions.
Binary file modified shared-plugins/two-factor/assets/screenshot-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified shared-plugins/two-factor/assets/screenshot-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified shared-plugins/two-factor/assets/screenshot-3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion shared-plugins/two-factor/class-two-factor-compat.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,6 @@ public function jetpack_rememberme( $rememberme ) {
* @return boolean
*/
public function jetpack_is_sso_active() {
return ( method_exists( 'Jetpack', 'is_module_active' ) && Jetpack::is_module_active( 'sso' ) );
return ( class_exists( 'Jetpack' ) && method_exists( 'Jetpack', 'is_module_active' ) && Jetpack::is_module_active( 'sso' ) );
}
}
Loading

0 comments on commit df73362

Please sign in to comment.