Plugin mycalendar - rss-feed without title
Posted: Fri Aug 22, 2008 5:07 pm
Hello,
I just started using the fine mycalendar-plugin. After subscribing to my own mycalendar-rss-feed I noticed, that the Feed-name was empty. I think I found a small bug.
at line 406
and at line 416
I changed $serendipity['blog_title'] to $serendipity['blogTitle'] and now everything works fine.
One more feature request: Because it is now difficult to distinct between the normal feed and the mycalenar-feed I would like to suggest to add to 'blogTitle' the name of the box in the sidebar, which can be set in plugin configuration. At the moment I am doing this in the code in this way:
I just started using the fine mycalendar-plugin. After subscribing to my own mycalendar-rss-feed I noticed, that the Feed-name was empty. I think I found a small bug.
at line 406
Code: Select all
<title><?php $serendipity['blog_title']; ?></title>Code: Select all
<author><?php echo $serendipity['blog_title']; ?></author>One more feature request: Because it is now difficult to distinct between the normal feed and the mycalenar-feed I would like to suggest to add to 'blogTitle' the name of the box in the sidebar, which can be set in plugin configuration. At the moment I am doing this in the code in this way:
Code: Select all
<title><?php echo $serendipity['blogTitle']; ?> - Termine</title>