diff options
author | Fabrice Bellingard <bellingard@gmail.com> | 2012-01-10 15:16:02 +0100 |
---|---|---|
committer | Fabrice Bellingard <bellingard@gmail.com> | 2012-01-10 15:17:09 +0100 |
commit | 0f04b4d371c428b656c551f6700c3e453d6aea0f (patch) | |
tree | 847d66a8fe5fdb76d94caa6438df226baea86156 /sonar-server | |
parent | e67cf1eecaa2bef3549296d6299faf914b38813e (diff) | |
download | sonarqube-0f04b4d371c428b656c551f6700c3e453d6aea0f.tar.gz sonarqube-0f04b4d371c428b656c551f6700c3e453d6aea0f.zip |
Remove Ruby on Rails warning
Diffstat (limited to 'sonar-server')
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/app/helpers/application_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/helpers/application_helper.rb b/sonar-server/src/main/webapp/WEB-INF/app/helpers/application_helper.rb index a240ff1a26a..aca14b59b84 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/helpers/application_helper.rb +++ b/sonar-server/src/main/webapp/WEB-INF/app/helpers/application_helper.rb @@ -609,7 +609,7 @@ module ApplicationHelper html += "\">" html += message('reviews.filtered_by.' + param_name) html += "<a href=\"" - html += url_for params.reject{|p| p[0]==param_name} + html += url_for params.reject{|key, value| key==param_name} html += "\" title=\"" html += message('reviews.remove_this_filter') html += "\">X</a></span>" |