]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-4627 Fix message to display
authorJulien Lancelot <julien.lancelot@sonarsource.com>
Mon, 4 Aug 2014 15:59:56 +0000 (17:59 +0200)
committerJulien Lancelot <julien.lancelot@sonarsource.com>
Mon, 4 Aug 2014 15:59:56 +0000 (17:59 +0200)
server/sonar-web/src/main/webapp/WEB-INF/app/controllers/metrics_controller.rb

index 3622e6a49554873402e4072863f26e3d53467dc0..6a08553dae1f55a03709e2a3b9a59138b8a82527 100644 (file)
@@ -111,7 +111,7 @@ class MetricsController < ApplicationController
       # If the key (name in db) is invalid, override error message to not display 'Key is invalid' but 'Name is invalid'
       if metric.errors[:name]
         metric.errors.clear
-        metric.errors.add_to_base('Name is invalid. Only alphabetic and space characters are allowed.')
+        metric.errors.add_to_base('Name is invalid. Only alphanumerical characters and space characters are allowed.')
       end
 
       @errors << metric.errors.full_messages.join("<br/>\n")