]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - actions/userrss.php
lcase tname
[quix0rs-gnu-social.git] / actions / userrss.php
index 92a6bccc95dbd2bbb392572c820eddf45b04be23..2ae45dc9cd25d8ef094db12ea80a6a69f4f32083 100644 (file)
@@ -30,47 +30,47 @@ class UserrssAction extends Rss10Action {
        function init() {
                $nickname = $this->trimmed('nickname');
                $this->user = User::staticGet('nickname', $nickname);
-               
+
                if (!$this->user) {
-                       common_user_error(_t('No such nickname.'));
+                       common_user_error(_('No such user.'));
                        return false;
                } else {
                        return true;
                }
        }
-       
+
        function get_notices($limit=0) {
-               
+
                $user = $this->user;
                $notices = array();
-               
+
                $notice = DB_DataObject::factory('notice');
                $notice->profile_id = $user->id; # user id === profile id
-               $notice->orderBy('created DESC');
+               $notice->orderBy('created DESC, notice.id DESC');
                if ($limit != 0) {
                        $notice->limit(0, $limit);
                }
                $notice->find();
-               
+
                while ($notice->fetch()) {
                        $notices[] = clone($notice);
                }
-               
+
                return $notices;
        }
-       
+
        function get_channel() {
                $user = $this->user;
                $profile = $user->getProfile();
                $c = array('url' => common_local_url('userrss',
-                                                                                        array('nickname' => 
+                                                                                        array('nickname' =>
                                                                                                   $user->nickname)),
                                   'title' => $user->nickname,
                                   'link' => $profile->profileurl,
-                                  'description' => _t('Microblog by ') . $user->nickname);
+                                  'description' => sprintf(_('Microblog by %s'), $user->nickname));
                return $c;
        }
-       
+
        function get_image() {
                $user = $this->user;
                $profile = $user->getProfile();