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,
]); ?>