aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-server
diff options
context:
space:
mode:
authorFabrice Bellingard <bellingard@gmail.com>2012-04-02 18:19:30 +0200
committerFabrice Bellingard <bellingard@gmail.com>2012-04-02 18:19:30 +0200
commit11b79f21ddd61b3306838119d3fc646334c3c16f (patch)
tree08a017849aab7cfbde9aa508f21b02b657eba173 /sonar-server
parent92cc81884284a49758f8778d1a8b812352c9ed18 (diff)
downloadsonarqube-11b79f21ddd61b3306838119d3fc646334c3c16f.tar.gz
sonarqube-11b79f21ddd61b3306838119d3fc646334c3c16f.zip
SONAR-3363 Error log "undefined method `downcase' for Array"
Diffstat (limited to 'sonar-server')
-rw-r--r--sonar-server/src/main/webapp/WEB-INF/app/controllers/drilldown_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/controllers/drilldown_controller.rb b/sonar-server/src/main/webapp/WEB-INF/app/controllers/drilldown_controller.rb
index b7500f6999a..1cf169d98c8 100644
--- a/sonar-server/src/main/webapp/WEB-INF/app/controllers/drilldown_controller.rb
+++ b/sonar-server/src/main/webapp/WEB-INF/app/controllers/drilldown_controller.rb
@@ -193,7 +193,7 @@ class DrilldownController < ApplicationController
if snapshot.rule_measure(Metric.by_key("#{metric_prefix}#{severity.downcase}_violations"), rule)
return severity
end
- Severity::MAJOR
end
+ Severity::MAJOR
end
end