summaryrefslogtreecommitdiff
path: root/classes
diff options
context:
space:
mode:
authorEvan Prodromou <evan@status.net>2010-09-21 06:21:47 -0400
committerEvan Prodromou <evan@status.net>2010-09-21 06:21:47 -0400
commit556a2a8fd8ce278f5c0b5ced9e762c6f9bac8659 (patch)
tree6e977172739e9ba85eda4217c8fb4149a3fe8f86 /classes
parentf7ec40fa427e87c9a04465ba52e82b3c62f7fefd (diff)
use Profile::getUri() to get a profile's URI
Diffstat (limited to 'classes')
-rw-r--r--classes/Notice.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/Notice.php b/classes/Notice.php
index 0539ca3b1..04dcd24cd 100644
--- a/classes/Notice.php
+++ b/classes/Notice.php
@@ -1255,7 +1255,7 @@ class Notice extends Memcached_DataObject
foreach ($reply_ids as $id) {
$profile = Profile::staticGet('id', $id);
if (!empty($profile)) {
- $ctx->attention[] = $profile->uri;
+ $ctx->attention[] = $profile->getUri();
}
}