espace possible dans nom de groupe

This commit is contained in:
afornerot 2019-12-16 17:14:32 +01:00
parent 1eacaeea9a
commit e1bdd1928b
5 changed files with 5 additions and 5 deletions

View File

@ -284,7 +284,7 @@ class Niveau01Controller extends Controller
if($tmp) $form->addError(new FormError('Un niveau de rang 02 utilise déjà ce label'));
// On s'assure que le label ne contient pas des caractères speciaux
$string = preg_replace('~[^@a-zA-Z0-9._-]~', '', $data->getLabel());
$string = preg_replace('~[^ @a-zA-Z0-9._-]~', '', $data->getLabel());
if($string!=$data->getLabel())
{
$form->addError(new FormError('Caractères interdit dans ce label'));

View File

@ -269,7 +269,7 @@ class Niveau02Controller extends Controller
if($tmp) $form->addError(new FormError('Un niveau de rang 01 utilise déjà ce label'));
// On s'assure que le label ne contient pas des caractères speciaux
$string = preg_replace('~[^@a-zA-Z0-9._-]~', '', $data->getLabel());
$string = preg_replace('~[^ @a-zA-Z0-9._-]~', '', $data->getLabel());
if($string!=$data->getLabel())
{
$form->addError(new FormError('Caractères interdit dans ce label'));

View File

@ -46,7 +46,7 @@
{% if form.label is defined %}
{{ form_row(form.label) }}
<div class='alert alert-info' style='font-size: 80%;padding: 5px;margin-top: -10px;'>
Caractères interdits = accent, espace, caractères spéciaux sauf @ . - _<br>
Caractères interdits = accent, caractères spéciaux sauf @ . - _<br>
</div>
{% if form.fgassoc is defined %}

View File

@ -41,7 +41,7 @@
<div class="panel-body">
{{ form_row(form.label) }}
<div class='alert alert-info' style='font-size: 80%;padding: 5px;margin-top: -10px;'>
Caractères interdits = accent, espace, caractères spéciaux sauf @ . - _<br>
Caractères interdits = accent, caractères spéciaux sauf @ . - _<br>
</div>
{{ form_row(form.siren) }}

View File

@ -42,7 +42,7 @@
{{ form_row(form.niveau01) }}
{{ form_row(form.label) }}
<div class='alert alert-info' style='font-size: 80%;padding: 5px;margin-top: -10px;'>
Caractères interdits = accent, espace, caractères spéciaux sauf @ . - _<br>
Caractères interdits = accent, caractères spéciaux sauf @ . - _<br>
</div>
{{ form_row(form.siret) }}