diff options
Diffstat (limited to 'app/helpers/application_helper.rb')
-rw-r--r-- | app/helpers/application_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index b11619088..8d390d6f7 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -863,7 +863,7 @@ module ApplicationHelper def body_css_classes css = [] if theme = Redmine::Themes.theme(Setting.ui_theme) - css << 'theme-' + theme.name + css << 'theme-' + theme.name.tr(' ', '_') end css << 'project-' + @project.identifier if @project && @project.identifier.present? |