From 5e79e97930b8b8ac824156e089d2c844045f830e Mon Sep 17 00:00:00 2001 From: Emmanuel Viennet Date: Wed, 15 Mar 2023 18:55:32 +0100 Subject: [PATCH] =?UTF-8?q?Fix=20formulaire=20cr=C3=A9ation=20utilisateur?= =?UTF-8?q?=20(mail=20optionnel)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/views/users.py | 2 +- sco_version.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/users.py b/app/views/users.py index 68109c6c..e180b9a3 100644 --- a/app/views/users.py +++ b/app/views/users.py @@ -426,7 +426,7 @@ def create_user_form(user_name=None, edit=0, all_roles=True): "input_type": "text", "explanation": "facultatif" if not edit_only_roles else "", "size": 36, - "allow_null": False, + "allow_null": True, "readonly": edit_only_roles, }, ), diff --git a/sco_version.py b/sco_version.py index f40a58f4..caf26ca9 100644 --- a/sco_version.py +++ b/sco_version.py @@ -1,7 +1,7 @@ # -*- mode: python -*- # -*- coding: utf-8 -*- -SCOVERSION = "9.4.64" +SCOVERSION = "9.4.65" SCONAME = "ScoDoc"