diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-01-21 11:50:22 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-01-21 11:50:22 +0000 |
commit | 0b4d4db131304eac84dc90b289a95db3410a2bfe (patch) | |
tree | b5ad6934b897635e594ca089f06fe953d082ed53 /app/views/feeds | |
parent | a1b12335ab6a01ea6e7dcc1df490db16136c8c2a (diff) | |
download | redmine-0b4d4db131304eac84dc90b289a95db3410a2bfe.tar.gz redmine-0b4d4db131304eac84dc90b289a95db3410a2bfe.zip |
settings are now stored in the database (config_custom.rb no more used) and editable through the application in: Admin -> Settings
git-svn-id: http://redmine.rubyforge.org/svn/trunk@167 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/feeds')
-rw-r--r-- | app/views/feeds/news.rxml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/feeds/news.rxml b/app/views/feeds/news.rxml index 50d4a9aba..41fb0cade 100644 --- a/app/views/feeds/news.rxml +++ b/app/views/feeds/news.rxml @@ -1,10 +1,10 @@ xml.instruct!
xml.rss "version" => "2.0", "xmlns:dc" => "http://purl.org/dc/elements/1.1/" do
xml.channel do
- xml.title "#{$RDM_HEADER_TITLE}: #{l(:label_news_latest)}"
+ xml.title "#{Setting.header_title}: #{l(:label_news_latest)}"
xml.link url_for(:controller => '', :only_path => false)
xml.pubDate CGI.rfc1123_date(@news.first.created_on)
- xml.description "#{$RDM_HEADER_TITLE}: #{l(:label_news_latest)}"
+ xml.description l(:label_news_latest)
@news.each do |news|
xml.item do
xml.title "#{news.project.name}: #{news.title}"
|