all repos — keyring-reactions-importer @ 1463f2afb7eb955bd21c2b6422e3360a1b4d6a7c

fixing wrong url to keyring service manager
Peter Molnar hello@petermolnar.eu
Fri, 24 Jul 2015 10:59:02 +0100
commit

1463f2afb7eb955bd21c2b6422e3360a1b4d6a7c

parent

9de4ece589a4a28f04e7231519ff8035871a1c7e

1 files changed, 2 insertions(+), 2 deletions(-)

jump to
M keyring-reactions-importer.phpkeyring-reactions-importer.php

@@ -540,8 +540,8 @@ &&

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 '<p><a href="' . esc_url( Keyring_Util::admin_url( static::SLUG, array( 'action' => 'manage', 'kr_nonce' => $manage_kr_nonce, 'nonce' => $manage_nonce ) ) ) . '" class="button-primary">' . sprintf( __( 'Configure %s Service', 'keyring' ), static::LABEL ) . '</a></p>'; + $manage_nonce = wp_create_nonce( 'keyring-manage-' . static::KEYRING_NAME ); + echo '<p><a href="' . esc_url( Keyring_Util::admin_url( static::KEYRING_NAME, array( 'action' => 'manage', 'kr_nonce' => $manage_kr_nonce, 'nonce' => $manage_nonce ) )) . '" class="button-primary">' . sprintf( __( 'Configure %s Service', 'keyring' ), static::LABEL ) . '</a></p>'; } $this->footer(); return;