summaryrefslogtreecommitdiff
path: root/lib/oauthstore.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@status.net>2009-11-08 21:41:43 -0500
committerEvan Prodromou <evan@status.net>2009-11-08 21:41:43 -0500
commit691beefd0f3755bab195279b1c0d7cc583942b72 (patch)
tree8c2e51f14d45759e57639ae90e999c192dcd0a17 /lib/oauthstore.php
parent76b0e6e6f4151235d5032d1aa90f0937b415bd87 (diff)
parentaa0d9a86152d2485de6de5ec572ae87085ebe780 (diff)
Merge branch '0.9.x' into adminpanel
Diffstat (limited to 'lib/oauthstore.php')
-rw-r--r--lib/oauthstore.php4
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;
}