Explorar el Código

fixed regex (we don't need '?')

Brikou CARRE hace 14 años
padre
commit
a83046f470
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/Symfony/Component/Form/Type/AbstractType.php

+ 1 - 1
src/Symfony/Component/Form/Type/AbstractType.php

@@ -47,7 +47,7 @@ abstract class AbstractType implements FormTypeInterface
 
     public function getName()
     {
-        if (preg_match('/\\\\([a-z]+)(?:Form|Type)?$/im', get_class($this), $matches)) {
+        if (preg_match('/\\\\([a-z]+)(?:Form|Type)$/im', get_class($this), $matches)) {
             $name = strtolower($matches[1]);
         }