Преглед на файлове

[Form] tweaked an error message

Fabien Potencier преди 14 години
родител
ревизия
a6a3789a54
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      src/Symfony/Component/Form/FormBuilder.php

+ 1 - 1
src/Symfony/Component/Form/FormBuilder.php

@@ -568,7 +568,7 @@ class FormBuilder
             );
         } else {
             if (!$this->dataClass) {
-                throw new FormException(sprintf('The "%s" form children type cannot be guessed as the data class is not set. Provide the type manually (\'text\', \'password\', ...) or set the data class.', $name));
+                throw new FormException(sprintf('The "%s" type cannot be guessed as the data class is not set. Provide the type manually (\'text\', \'password\', ...) or set the data class.', $name));
             }
 
             $builder = $this->getFormFactory()->createBuilderForProperty(