diff --git a/composer.json b/composer.json index f5409ed..ede4448 100644 --- a/composer.json +++ b/composer.json @@ -5,7 +5,7 @@ "homepage": "https://github.com/bartnv/twofactor_webauthn", "type": "roundcube-plugin", "license": "GPL-3.0+", - "version": "1.2", + "version": "1.3", "authors": [ { "name": "Bart Noordervliet", diff --git a/twofactor_webauthn.php b/twofactor_webauthn.php index a0dcd68..a517362 100644 --- a/twofactor_webauthn.php +++ b/twofactor_webauthn.php @@ -4,7 +4,7 @@ * * This RoundCube plugin adds WebAuthn/FIDO2 verification to the login process * - * @version 1.2.0 + * @version 1.3.0 * @author Bart Noordervliet * @url https://github.com/bartnv/twofactor_webauthn */ @@ -25,7 +25,7 @@ function init() { $this->register_action('twofactor_webauthn', array($this, 'twofactor_webauthn_init')); $this->register_action('plugin.twofactor_webauthn_list', array($this, 'twofactor_webauthn_list')); $this->register_action('plugin.twofactor_webauthn_save', array($this, 'twofactor_webauthn_save')); - $this->register_action('plugin.twofactor_webauthn_prepare', array($this, 'twofactor_webauthn_prepare')); + $this->register_action('plugin.twofactor_webauthn_prepare', array($this, 'twofactor_webauthn_prepare')); $this->register_action('plugin.twofactor_webauthn_register', array($this, 'twofactor_webauthn_register')); $this->register_action('plugin.twofactor_webauthn_rename', array($this, 'twofactor_webauthn_rename')); $this->register_action('plugin.twofactor_webauthn_delete', array($this, 'twofactor_webauthn_delete'));