]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
fix query and description for allrss
authorEvan Prodromou <evan@prodromou.name>
Thu, 22 May 2008 11:48:39 +0000 (07:48 -0400)
committerEvan Prodromou <evan@prodromou.name>
Thu, 22 May 2008 11:48:39 +0000 (07:48 -0400)
darcs-hash:20080522114839-84dde-bdf5f244766b198932a068d6c80a667943a03f54.gz

actions/allrss.php

index 7aab423b2725d8100c4494e92be62c9edfae5eb3..081360a59725d6b647c928ea2624952080e045e8 100644 (file)
@@ -46,7 +46,7 @@ class AllrssAction extends Rss10Action {
                
                $notice = DB_DataObject::factory('notice');
 
-               $notice->whereAdd('EXISTS (SELECT subscribed from subscription where subscriber = '.$profile->id.' and subscribed = notice.profile_id)', 'OR');
+               $notice->whereAdd('EXISTS (SELECT subscribed from subscription where subscriber = '.$user->id.' and subscribed = notice.profile_id)', 'OR');
                $notice->whereAdd('profile_id = ' . $user->id, 'OR');
 
                $notice->orderBy('created DESC');
@@ -71,7 +71,7 @@ class AllrssAction extends Rss10Action {
                                   'link' => common_local_url('all',
                                                                                         array('nickname' =>
                                                                                                   $user->nickname)),
-                                  'description' => _t('Microblog feed for ') . $user->nickname);
+                                  'description' => _t('Feed for friends of ') . $user->nickname);
                return $c;
        }