amélioration gestion casse modif catégorie
This commit is contained in:
parent
64d57b8560
commit
56b11a0edf
@ -9,11 +9,19 @@
|
||||
|
||||
{{* Traiter l'envoi du formulaire *}}
|
||||
{{#form on="save"}}
|
||||
{{* Vérifier s'il existe déjà une catégorie avec le même nom *}}
|
||||
{{#load type="category"}}
|
||||
{{if $name|tolower == $_POST.name|trim|tolower && $key != $_GET.key}}
|
||||
{{:error message="Modification impossible car ce nom de catégorie (« %s ») existe déjà !"|args:$name|trim}}
|
||||
{{:break}}
|
||||
{{/if}}
|
||||
{{/load}}
|
||||
|
||||
{{:save
|
||||
key=$category.key
|
||||
validate_schema="./category.schema.json"
|
||||
type="category"
|
||||
name=$_POST.name|trim
|
||||
name=$_POST.name|trim|tolower|ucfirst
|
||||
}}
|
||||
{{:redirect force="./index.html?ok=1&msg=modification"}}
|
||||
{{/form}}
|
||||
|
Loading…
Reference in New Issue
Block a user