summaryrefslogtreecommitdiff
path: root/actions/publicrss.php
diff options
context:
space:
mode:
authorMike Cochrane <mikec@mikenz.geek.nz>2008-07-08 05:45:31 -0400
committerMike Cochrane <mikec@mikenz.geek.nz>2008-07-08 05:45:31 -0400
commit87b494f1ebbe7640d194ef322af12fdf378295df (patch)
treef4b616fd8306bb92d3063d4e86dd1b87607163f4 /actions/publicrss.php
parenta25f5010e682a0fc950e2ef2476af7b631ada5bf (diff)
Convert _t() to _() for gettext.
darcs-hash:20080708094531-533db-83399a46e6ec4c0fcc6249b0235961f969d1ae73.gz
Diffstat (limited to 'actions/publicrss.php')
-rw-r--r--actions/publicrss.php24
1 files changed, 12 insertions, 12 deletions
diff --git a/actions/publicrss.php b/actions/publicrss.php
index 93314ee32..0916da009 100644
--- a/actions/publicrss.php
+++ b/actions/publicrss.php
@@ -28,41 +28,41 @@ class PublicrssAction extends Rss10Action {
function init() {
return true;
}
-
+
function get_notices($limit=0) {
-
+
$user = $this->user;
$notices = array();
-
+
$notice = DB_DataObject::factory('notice');
# FIXME: bad performance
-
+
$notice->whereAdd('EXISTS (SELECT user.id from user where user.id = notice.profile_id)');
-
+
$notice->orderBy('created DESC');
-
+
if ($limit != 0) {
$notice->limit(0, $limit);
}
$notice->find();
-
+
while ($notice->fetch()) {
$notices[] = clone($notice);
}
-
+
return $notices;
}
-
+
function get_channel() {
global $config;
$c = array('url' => common_local_url('publicrss'),
- 'title' => $config['site']['name'] . _t(' Public Stream'),
+ 'title' => sprintf(_('%s Public Stream'), $config['site']['name']),
'link' => common_local_url('public'),
- 'description' => _t('All updates for ') . $config['site']['name']);
+ 'description' => sprintf(_('All updates for %s'), $config['site']['name']));
return $c;
}
-
+
function get_image() {
return NULL;
}