diff options
author | Evan Prodromou <evan@status.net> | 2010-02-20 13:31:20 -0500 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2010-02-20 13:31:20 -0500 |
commit | f3b08461bd476d368d444d48025709fb6a111b7d (patch) | |
tree | d5af4db40a036aa2fc45d779746fe89685fbae31 /actions/apitimelinefriends.php | |
parent | 61a072b3c492fd1b336e84655ffb6a28547acba7 (diff) |
Change to use TagURI::base() instead of common_config()
I changed the way that tag: URIs are minted, so we now use the right
base. Ideally most of these would use HTTP URIs instead, but for
now at least they use the right base.
Diffstat (limited to 'actions/apitimelinefriends.php')
-rw-r--r-- | actions/apitimelinefriends.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/apitimelinefriends.php b/actions/apitimelinefriends.php index 0af04fe4f..2db76857e 100644 --- a/actions/apitimelinefriends.php +++ b/actions/apitimelinefriends.php @@ -112,7 +112,7 @@ class ApiTimelineFriendsAction extends ApiBareAuthAction $avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE); $sitename = common_config('site', 'name'); $title = sprintf(_("%s and friends"), $this->user->nickname); - $taguribase = common_config('integration', 'taguri'); + $taguribase = TagURI::base(); $id = "tag:$taguribase:FriendsTimeline:" . $this->user->id; $subtitle = sprintf( |