From b46ce09d334bdad993e6b715655ba697848cf5cf Mon Sep 17 00:00:00 2001 From: Jean-Christophe Engel Date: Mon, 30 Oct 2023 14:43:45 +0100 Subject: [PATCH] =?UTF-8?q?Simplification=20v=C3=A9rification?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- categories/index.html | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/categories/index.html b/categories/index.html index 8dbd7a2..56e4270 100644 --- a/categories/index.html +++ b/categories/index.html @@ -32,10 +32,8 @@ {{#form on="save"}} {{* Vérifier s'il existe déjà une catégorie avec le même nom *}} - {{#load type="category"}} - {{if $name|trim|tolower == $_POST.name|trim|tolower }} - {{:error message="Impossible d'ajouter la catégorie « %s » car elle existe déjà !"|args:$name|trim}} - {{/if}} + {{#load type="category" where="lower($$.name) = :name" :name=$_POST.name|trim|tolower}} + {{:error message="Impossible d'ajouter la catégorie « %s » car elle existe déjà !"|args:$name|trim}} {{/load}} {{:assign key=""|uuid}}