diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-02-20 17:30:09 -0500 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-02-20 17:30:09 -0500 |
commit | 3a999af4d905d3cd23ea9163f47b6ed5c35f606c (patch) | |
tree | 747e999f45b95d2d8840f4bbdb6514473275927a /actions/userrss.php | |
parent | f39dd40ffa9ae9e52fb0e83c2dfaae5f65ca5f80 (diff) |
Change common_local_url() to take 4 arguments
I changed common_local_url() to take an additional optional argument
-- for query parameters. Being persnickety, I made it the third of
four, and moved the last one ($fragment) down a slot. That required
changing a couple of calls.
Diffstat (limited to 'actions/userrss.php')
-rw-r--r-- | actions/userrss.php | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/actions/userrss.php b/actions/userrss.php index 04855ccca..a3e5a3aab 100644 --- a/actions/userrss.php +++ b/actions/userrss.php @@ -46,13 +46,13 @@ class UserrssAction extends Rss10Action { $user = $this->user; - + if (is_null($user)) { return null; } - + $notice = $user->getNotices(0, ($limit == 0) ? NOTICES_PER_PAGE : $limit); - + while ($notice->fetch()) { $notices[] = clone($notice); } @@ -87,10 +87,10 @@ class UserrssAction extends Rss10Action } # override parent to add X-SUP-ID URL - + function initRss($limit=0) { - $url = common_local_url('sup', null, $this->user->id); + $url = common_local_url('sup', null, null, $this->user->id); header('X-SUP-ID: '.$url); parent::initRss($limit); } @@ -100,4 +100,3 @@ class UserrssAction extends Rss10Action return true; } } - |