diff options
author | Evan Prodromou <evan@status.net> | 2010-12-12 12:13:54 -0500 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2010-12-12 12:13:54 -0500 |
commit | 1817aedb5cf5c1cc7cfe1cb5146d087903b58e49 (patch) | |
tree | 5cab979f76eda40c59c216a118b534e55f0acb86 | |
parent | d9a614c57ec864fdb4e19e957cf50ac662a3679f (diff) |
fix subtitle in subscriptions feed
-rw-r--r-- | actions/atompubsubscriptionfeed.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/atompubsubscriptionfeed.php b/actions/atompubsubscriptionfeed.php index 065790c20..95a6fdd1a 100644 --- a/actions/atompubsubscriptionfeed.php +++ b/actions/atompubsubscriptionfeed.php @@ -148,8 +148,8 @@ class AtompubsubscriptionfeedAction extends ApiAuthAction $this->_profile->getBestName())); $feed->setSubtitle(sprintf(_("People %s has subscribed to on %s"), - $this->_profile->getBestName()), - common_config('site', 'name')); + $this->_profile->getBestName(), + common_config('site', 'name'))); $feed->addLink(common_local_url('subscriptions', array('nickname' => |