From 1463f2afb7eb955bd21c2b6422e3360a1b4d6a7c Mon Sep 17 00:00:00 2001 From: Peter Molnar Date: Fri, 24 Jul 2015 10:59:02 +0100 Subject: [PATCH] fixing wrong url to keyring service manager --- keyring-reactions-importer.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;