diff options
author | Evan Prodromou <evan@status.net> | 2009-11-08 21:23:25 -0500 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2009-11-08 21:23:25 -0500 |
commit | aa0d9a86152d2485de6de5ec572ae87085ebe780 (patch) | |
tree | be142ab0f12a2e580aa36de31e0ceddadd0158b5 /lib/oauthstore.php | |
parent | f086dddf43a8e1593a615e77c2fdd605623acf49 (diff) | |
parent | 8e58f241739b97bd53f78035781f16e2067a31d9 (diff) |
Merge branch '0.9.x' of git@gitorious.org:statusnet/mainline into 0.9.x
Diffstat (limited to 'lib/oauthstore.php')
-rw-r--r-- | lib/oauthstore.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/oauthstore.php b/lib/oauthstore.php index d617a7df7..a4ea5ad4d 100644 --- a/lib/oauthstore.php +++ b/lib/oauthstore.php @@ -351,7 +351,7 @@ class StatusNetOAuthDataStore extends OAuthDataStore $author = User::staticGet('uri', $author_uri); } if (!$author) { - throw new Exception('No such user'); + throw new Exception('No such user.'); } common_log(LOG_DEBUG, print_r($author, true), __FILE__); @@ -407,7 +407,7 @@ class StatusNetOAuthDataStore extends OAuthDataStore $user = User::staticGet('uri', $uri); } if (!$user) { - throw new Exception('No such user'); + throw new Exception('No such user.'); } return $user; } |