aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJulien Lancelot <julien.lancelot@gmail.com>2013-04-19 16:48:04 +0200
committerJulien Lancelot <julien.lancelot@gmail.com>2013-04-19 16:48:04 +0200
commit6064b75e20ef1548f3df5b621a7279162a7817dc (patch)
tree7a4686e8574ee43ee9bc16284c2f8690477fc386
parentd26921552a9e39a72ef65eb6fbeb29be0674a03b (diff)
downloadsonarqube-6064b75e20ef1548f3df5b621a7279162a7817dc.tar.gz
sonarqube-6064b75e20ef1548f3df5b621a7279162a7817dc.zip
SONAR-3755 Replace message by description
-rw-r--r--sonar-server/src/main/webapp/WEB-INF/app/views/resource/_issue.html.erb4
1 files changed, 2 insertions, 2 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/resource/_issue.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/resource/_issue.html.erb
index 9593d9e8f39..481664b6a15 100644
--- a/sonar-server/src/main/webapp/WEB-INF/app/views/resource/_issue.html.erb
+++ b/sonar-server/src/main/webapp/WEB-INF/app/views/resource/_issue.html.erb
@@ -70,8 +70,8 @@
<div class="discussionComment first">
<div id="vMsg<%= issue.key -%>">
- <% issue_message = issue.message ? Api::Utils.split_newlines(h(issue.message)).join('<br/>') : '' %>
- <%= issue_message || '&nbsp;' -%>
+ <% issue_description = issue.description ? Api::Utils.split_newlines(h(issue.description)).join('<br/>') : '' %>
+ <%= issue_description || '&nbsp;' -%>
</div>
</div>