From fbbf67128979dfeb71f3ef3c76a0489959229209 Mon Sep 17 00:00:00 2001 From: F TEMPEZ Date: Wed, 31 Jan 2024 13:46:11 +0100 Subject: [PATCH] =?UTF-8?q?1.4.17=20D=C3=A9sactivation=20des=20champs=20da?= =?UTF-8?q?ns=20la=20page=20de=20consultation=20de=20la=20configuration=20?= =?UTF-8?q?d'un=20espace?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/core.php | 2 +- core/module/course/view/manage/manage.php | 11 ++++++----- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/core/core.php b/core/core.php index 8691bf2..91076ae 100644 --- a/core/core.php +++ b/core/core.php @@ -51,7 +51,7 @@ class common const ACCESS_TIMER = 1800; // Numéro de version - const ZWII_VERSION = '1.4.16'; + const ZWII_VERSION = '1.4.17'; // URL autoupdate const ZWII_UPDATE_URL = 'https://forge.chapril.org/ZwiiCMS-Team/campus-update/raw/branch/master/'; diff --git a/core/module/course/view/manage/manage.php b/core/module/course/view/manage/manage.php index 20a6fe1..1ccb676 100644 --- a/core/module/course/view/manage/manage.php +++ b/core/module/course/view/manage/manage.php @@ -58,7 +58,7 @@ 'Titre', 'value' => $this->getdata(['course', $this->getUrl(2), 'title']), - 'readonly' => true, + 'disabled' => true, ]); ?>
@@ -90,7 +90,7 @@ 'Description', 'value' => $this->getdata(['course', $this->getUrl(2), 'description']), - 'readonly' => true, + 'disabled' => true, ]); ?>
@@ -107,7 +107,7 @@ 'type' => 'datetime-local', 'label' => 'Ouverture', 'value' => is_null($this->getdata(['course', $this->getUrl(2), 'openingDate'])) ? '' : floor($this->getdata(['course', $this->getUrl(2), 'openingDate']) / 60) * 60, - 'readonly' => true, + 'disabled' => true, ]); ?>
@@ -115,6 +115,7 @@ 'type' => 'datetime-local', 'label' => 'Fermeture', 'value' => is_null($this->getdata(['course', $this->getUrl(2), 'closingDate'])) ? '' : floor($this->getdata(['course', $this->getUrl(2), 'closingDate']) / 60) * 60, + 'disabled' => true, ]); ?>
@@ -130,7 +131,7 @@ 'Clé', 'value' => $this->getdata(['course', $this->getUrl(2), 'enrolmentKey']), - 'readonly' => true, + 'disabled' => true, ]); ?> @@ -147,7 +148,7 @@ 'type' => 'datetime-local', 'label' => 'Fermeture', 'value' => is_null($this->getdata(['course', $this->getUrl(2), 'limitEnrolmentDate'])) ? '' : floor($this->getdata(['course', $this->getUrl(2), 'limitEnrolmentDate']) / 60) * 60, - 'readonly' => true, + 'disabled' => true, ]); ?>