diff options
author | Evan Prodromou <evan@status.net> | 2010-09-21 06:21:47 -0400 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2010-09-21 06:21:47 -0400 |
commit | 556a2a8fd8ce278f5c0b5ced9e762c6f9bac8659 (patch) | |
tree | 6e977172739e9ba85eda4217c8fb4149a3fe8f86 /classes | |
parent | f7ec40fa427e87c9a04465ba52e82b3c62f7fefd (diff) |
use Profile::getUri() to get a profile's URI
Diffstat (limited to 'classes')
-rw-r--r-- | classes/Notice.php | 2 |
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(); } } |