diff --git a/keyring-reactions-importer.php b/keyring-reactions-importer.php index a5312ca..04d17d5 100644 --- a/keyring-reactions-importer.php +++ b/keyring-reactions-importer.php @@ -540,8 +540,8 @@ abstract class Keyring_Reactions_Base { has_action( 'keyring_' . static::KEYRING_NAME . '_manage_ui' ) // Does this service have a UI to link to? ) { $manage_kr_nonce = wp_create_nonce( 'keyring-manage' ); - $manage_nonce = wp_create_nonce( 'keyring-manage-' . static::SLUG ); - echo '

' . sprintf( __( 'Configure %s Service', 'keyring' ), static::LABEL ) . '

'; + $manage_nonce = wp_create_nonce( 'keyring-manage-' . static::KEYRING_NAME ); + echo '

' . sprintf( __( 'Configure %s Service', 'keyring' ), static::LABEL ) . '

'; } $this->footer(); return;