From: Evan Prodromou Date: Tue, 21 Sep 2010 10:21:47 +0000 (-0400) Subject: use Profile::getUri() to get a profile's URI X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=556a2a8fd8ce278f5c0b5ced9e762c6f9bac8659;p=quix0rs-gnu-social.git use Profile::getUri() to get a profile's URI --- diff --git a/classes/Notice.php b/classes/Notice.php index 0539ca3b1d..04dcd24cd5 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(); } }