From 57be7c90610693b35a26981ac1ccc47898bb1bc8 Mon Sep 17 00:00:00 2001 From: Heikki Hokkanen Date: Wed, 25 Jun 2008 21:39:09 +0300 Subject: [PATCH] Tweaked the RSS. Commit message is now shown as full, and wrapped in pre tag. --- inc/config.php | 2 +- inc/functions.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/inc/config.php b/inc/config.php index 054d346..e8400af 100644 --- a/inc/config.php +++ b/inc/config.php @@ -37,6 +37,6 @@ $conf['rss_max_items'] = 30; // RSS item format. Allowed formatting: // {AUTHOR}, {SHORTLOG}, {LOG}, {COMMITTER} $conf['rss_item_title'] = '{SHORTLOG} ({AUTHOR})'; -$conf['rss_item_description'] = '{LOG}

{AUTHOR} <{AUTHOR_MAIL}>'; +$conf['rss_item_description'] = '
{LOG}
{AUTHOR} <{AUTHOR_MAIL}>'; include_once('localconfig.php'); diff --git a/inc/functions.php b/inc/functions.php index 9d27516..18dd079 100644 --- a/inc/functions.php +++ b/inc/functions.php @@ -267,7 +267,7 @@ function rss_item_format($format, $info) $info['author_name'], $info['author_mail'], $info['message_firstline'], - $info['message'], + $info['message_full'], $info['committer_name'], $info['committer_mail'], ), $format); -- 2.11.4.GIT