diff options
author | Dries Buytaert <dries@buytaert.net> | 2007-10-25 17:44:38 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2007-10-25 17:44:38 +0000 |
commit | 8653f140c67e30463a56f2b19cfddd4673a98e08 (patch) | |
tree | 1bd2b1ce1a463716f385016c05b6258e0e95d468 /modules/blog/blog.pages.inc | |
parent | ca0bbfee5b79cec35beccedd7ce0d72455799ab2 (diff) | |
download | brdo-8653f140c67e30463a56f2b19cfddd4673a98e08.tar.gz brdo-8653f140c67e30463a56f2b19cfddd4673a98e08.tar.bz2 |
- Patch #186554 by Jo Wouters: fixed undefined variable.
Diffstat (limited to 'modules/blog/blog.pages.inc')
-rw-r--r-- | modules/blog/blog.pages.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/blog/blog.pages.inc b/modules/blog/blog.pages.inc index 14951b855..e9dcdb765 100644 --- a/modules/blog/blog.pages.inc +++ b/modules/blog/blog.pages.inc @@ -62,6 +62,7 @@ function blog_feed_user($account) { $channel['title'] = $account->name ."'s blog"; $channel['link'] = url('blog/'. $account->uid, array('absolute' => TRUE)); + $items = array(); while ($row = db_fetch_object($result)) { $items[] = $row->nid; } |