diff options
author | Zach Copley <zach@controlyourself.ca> | 2009-08-04 00:46:18 +0000 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-08-24 11:53:21 -0400 |
commit | ee006dbb0eb8e9d59e5d7b0083918521646102a0 (patch) | |
tree | 706d6fa719d5a139e655ad7abbfaa44b55151d67 /actions | |
parent | 590f21c6a96d4d83370c9a0c590bdf5f9cc17769 (diff) |
Moved some stuff to a base class
Diffstat (limited to 'actions')
-rw-r--r-- | actions/twitterauthorization.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/twitterauthorization.php b/actions/twitterauthorization.php index 519427dac..2390034cd 100644 --- a/actions/twitterauthorization.php +++ b/actions/twitterauthorization.php @@ -80,7 +80,7 @@ class TwitterauthorizationAction extends Action $_SESSION['twitter_request_token_secret'] = $req_tok->key; $auth_link = $client->getAuthorizeLink($req_tok); - + } catch (TwitterOAuthClientException $e) { $msg = sprintf('OAuth client cURL error - code: %1s, msg: %2s', $e->getCode(), $e->getMessage()); |