From adc5901d21be286ff3459f2cd2bf4373625ac5e5 Mon Sep 17 00:00:00 2001 From: Jeffery To Date: Thu, 6 Aug 2009 23:36:24 +0800 Subject: Make RSS 1.0 channel descriptions more consistent with RSS 2.0 and Atom descriptions --- actions/noticesearchrss.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'actions/noticesearchrss.php') diff --git a/actions/noticesearchrss.php b/actions/noticesearchrss.php index 2a4b2060d..045531c5a 100644 --- a/actions/noticesearchrss.php +++ b/actions/noticesearchrss.php @@ -86,9 +86,10 @@ class NoticesearchrssAction extends Rss10Action { $q = $this->trimmed('q'); $c = array('url' => common_local_url('noticesearchrss', array('q' => $q)), - 'title' => common_config('site', 'name') . sprintf(_(' Search Stream for "%s"'), $q), + 'title' => sprintf(_('Updates with "%s"'), $q), 'link' => common_local_url('noticesearch', array('q' => $q)), - 'description' => sprintf(_('All updates matching search term "%s"'), $q)); + 'description' => sprintf(_('Updates matching search term "%1$s" on %2$s!'), + $q, common_config('site', 'name'))); return $c; } -- cgit v1.2.3-54-g00ecf