Fix syntax errors

This commit is contained in:
Zach Copley 2010-10-22 00:48:26 +00:00
parent ce0d81c190
commit aa6ec40c51
1 changed files with 2 additions and 2 deletions

View File

@ -560,7 +560,7 @@ class ApiOauthAuthorizeAction extends Action
// TRANS: User notification after revoking OAuth access to an application.
// TRANS: %s is an OAuth token.
_('The request token %s has been revoked.'),
$this->oauthTokenParm
$this->oauthTokenParam
)
);
@ -618,7 +618,7 @@ class ApiOauthAuthorizeAction extends Action
$callback = null;
// Return the verified callback if we have one
if ($this->app->type == 2) {
if ($this->reqToken->verified_callback != 'oob') {
$callback = $this->reqToken->verified_callback;