Incorrect display of RSS items on Lilina 0.9 and fixed it.
On my RSS page, I found it cannot display correctly some items from blogs based on WordPress. I have thought that it's the blog owner's problem that they should put some basic HTML tags(p,br etc) into their post. But after I check the rss display on feedburner.com, I found there are two copies of the entry body in the rss XML output, one is not processed by feed-burner, and the another copy is formated by feedburner that with right HTML tags in it. The problem is that lilina just display the unformatted part, if it display the formatted part, the the display is consistently with the original page.
So I did some modification of the index.php file, replace the following
$summary = $item['summary'];
if (!$summary) $summary = $item['atom_content'];
with
$summary = $item['atom_content'];
if (!$summary) $summary = $item['summary'];
I begin to know why my friend Fenng choose Planet as the platform of his cnoug.net, Lilina does have performance problem, the display problem could be another reason.
My another site IamDBA.com becomes a RSS aggregation of mainly China Oracle DBAs, still based on Lilina. The only issue is that access speed of DreamHost is a little slow in China.
