List views without the list markup
If you want a list view, but just want one item after another without the UL/LI markup, this is what you do:
1) Make a list view
2) Run the theming wizard and paste the stuff it tells you to
3) In the bit for template.php:
replace
return theme('item_list', $items);
with
return implode(" ",$items);
This will get you _just_ the stuff in the tpl file with each item separated by spaces and no list markup.
