diff options
author | Fabrice Bellingard <fabrice.bellingard@sonarsource.com> | 2012-12-04 12:14:14 +0100 |
---|---|---|
committer | Fabrice Bellingard <fabrice.bellingard@sonarsource.com> | 2012-12-04 15:35:02 +0100 |
commit | c3e7298e068f9c667dab35479d5b82bc3141da2c (patch) | |
tree | a5460d21f6e1289f42169bfdadad182a400d78d0 /sonar-server/src | |
parent | 0249b981fea469dc04ee0caebac2db39bbf37029 (diff) | |
download | sonarqube-c3e7298e068f9c667dab35479d5b82bc3141da2c.tar.gz sonarqube-c3e7298e068f9c667dab35479d5b82bc3141da2c.zip |
SONAR-3972 Fix issue with display resource title or not
Diffstat (limited to 'sonar-server/src')
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/app/views/resource/_tabs.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/resource/_tabs.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/resource/_tabs.html.erb index d969cf92417..1f889f74354 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/resource/_tabs.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/resource/_tabs.html.erb @@ -28,7 +28,7 @@ end if request.xhr? %> <li class="<%= 'first' if first -%>"> - <a href="<%= ApplicationController.root_context -%>/resource/index/<%= @resource.key -%>?display_title=<%= display_title -%>" onclick="window.open(this.href,'resource','height=800,width=900,scrollbars=1,resizable=1');return false;"><%= message('new_window') -%></a> + <a href="<%= ApplicationController.root_context -%>/resource/index/<%= @resource.key -%>?display_title=true" onclick="window.open(this.href,'resource','height=800,width=900,scrollbars=1,resizable=1');return false;"><%= message('new_window') -%></a> </li> <% end %> </ul> |