fix a wrong css class regarding themes

pull/230/head
Martin Linkhorst 12 years ago
parent d7fe5cc8f2
commit 963bbc92c5
  1. 2
      app/helpers/application_helper.rb

@ -484,7 +484,7 @@ module ApplicationHelper
def body_css_classes
theme = OpenProject::Themes.theme(Setting.ui_theme)
css = ['theme-' + theme.name.to_s]
css = ['theme-' + theme.identifier.to_s]
if params[:controller] && params[:action]
css << 'controller-' + params[:controller]

Loading…
Cancel
Save