From ed802001a50e8d96d739ecc1b0097d8042a47155 Mon Sep 17 00:00:00 2001 From: Stas Vilchik Date: Wed, 20 Jan 2016 09:49:23 +0100 Subject: [PATCH] SONAR-4610 relax check --- .../webapp/WEB-INF/app/views/settings/_type_LICENSE.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/sonar-web/src/main/webapp/WEB-INF/app/views/settings/_type_LICENSE.html.erb b/server/sonar-web/src/main/webapp/WEB-INF/app/views/settings/_type_LICENSE.html.erb index b28e4cd0efc..aeaa68efed4 100644 --- a/server/sonar-web/src/main/webapp/WEB-INF/app/views/settings/_type_LICENSE.html.erb +++ b/server/sonar-web/src/main/webapp/WEB-INF/app/views/settings/_type_LICENSE.html.erb @@ -6,7 +6,7 @@ product = license.getProduct() || '-' # super-hack here # should be avoided in the future - does_product_match = property.key == "sonar.#{product}.license.secured" + does_product_match = property.key.include? product %>
-- 2.39.5