Nice work, thanks for sharing!
This is exactly what I've been looking for today.
Quote:
Limitations:
As far as I know magpie is not capable of limiting the length of the text displayed per line.
|
You can modify the output directly in rss.php. Below this line:
PHP Code:
$title = $item['title'];
add the following line:
PHP Code:
if(strlen($title) > 30) $title = substr($title, 0, 27) . "...";
This will break any too long titles to a maximum of 30 characters. You can of course modify this value according to you needs.