diff options
author | Brion Vibber <brion@pobox.com> | 2010-10-20 15:17:56 -0700 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-10-20 15:17:56 -0700 |
commit | 9d401e2b15c93b91c087507ae8ac8dcb8a44f8d2 (patch) | |
tree | 3f95b5fc6a9131cf3d8f4c7769cd80b73f73fccd | |
parent | 8004e2809d98bdd535a3c59bd7d15c3fa2dd7ba9 (diff) |
Fix --oauth-token-secret on oauth_verify_creds.php
-rwxr-xr-x | tests/oauth/oauth_verify_creds.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/oauth/oauth_verify_creds.php b/tests/oauth/oauth_verify_creds.php index 7eea6e7e7..a37538d87 100755 --- a/tests/oauth/oauth_verify_creds.php +++ b/tests/oauth/oauth_verify_creds.php @@ -43,7 +43,7 @@ if (have_option('t', 'oauth_token')) { $token = get_option_value('t', 'oauth_token'); } -if (have_option('s', 'token_secret')) { +if (have_option('s', 'oauth_token_secret')) { $token_secret = get_option_value('s', 'oauth_token_secret'); } |