Merge branch 'master' into dist/envole/6/master
This commit is contained in:
commit
1acce9d3fd
|
@ -284,7 +284,7 @@ class Niveau01Controller extends Controller
|
||||||
if($tmp) $form->addError(new FormError('Un niveau de rang 02 utilise déjà ce label'));
|
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
|
// 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())
|
if($string!=$data->getLabel())
|
||||||
{
|
{
|
||||||
$form->addError(new FormError('Caractères interdit dans ce label'));
|
$form->addError(new FormError('Caractères interdit dans ce label'));
|
||||||
|
|
|
@ -269,7 +269,7 @@ class Niveau02Controller extends Controller
|
||||||
if($tmp) $form->addError(new FormError('Un niveau de rang 01 utilise déjà ce label'));
|
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
|
// 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())
|
if($string!=$data->getLabel())
|
||||||
{
|
{
|
||||||
$form->addError(new FormError('Caractères interdit dans ce label'));
|
$form->addError(new FormError('Caractères interdit dans ce label'));
|
||||||
|
|
|
@ -46,7 +46,7 @@
|
||||||
{% if form.label is defined %}
|
{% if form.label is defined %}
|
||||||
{{ form_row(form.label) }}
|
{{ form_row(form.label) }}
|
||||||
<div class='alert alert-info' style='font-size: 80%;padding: 5px;margin-top: -10px;'>
|
<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>
|
</div>
|
||||||
|
|
||||||
{% if form.fgassoc is defined %}
|
{% if form.fgassoc is defined %}
|
||||||
|
|
|
@ -41,7 +41,7 @@
|
||||||
<div class="panel-body">
|
<div class="panel-body">
|
||||||
{{ form_row(form.label) }}
|
{{ form_row(form.label) }}
|
||||||
<div class='alert alert-info' style='font-size: 80%;padding: 5px;margin-top: -10px;'>
|
<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>
|
</div>
|
||||||
|
|
||||||
{{ form_row(form.siren) }}
|
{{ form_row(form.siren) }}
|
||||||
|
|
|
@ -42,7 +42,7 @@
|
||||||
{{ form_row(form.niveau01) }}
|
{{ form_row(form.niveau01) }}
|
||||||
{{ form_row(form.label) }}
|
{{ form_row(form.label) }}
|
||||||
<div class='alert alert-info' style='font-size: 80%;padding: 5px;margin-top: -10px;'>
|
<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>
|
</div>
|
||||||
|
|
||||||
{{ form_row(form.siret) }}
|
{{ form_row(form.siret) }}
|
||||||
|
|
Loading…
Reference in New Issue