Skip to content

Commit

Permalink
fix(targetchange): value of checklist not rendered
Browse files Browse the repository at this point in the history
due tu a typo

Signed-off-by: Thierry Bugier <tbugier@teclib.com>
  • Loading branch information
btry committed May 12, 2020
1 parent 1068e97 commit 965b10b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion inc/targetchange.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ public function showForm($options = []) {
echo '<td colspan="3">';
echo Html::textarea([
'name' => 'checklistcontent',
'vamue' => $this->fields['checklistcontent'],
'value' => $this->fields['checklistcontent'],
'display' => false,
]);
echo '</td>';
Expand Down
2 changes: 1 addition & 1 deletion setup.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

// Minimal GLPI version, inclusive
define ('PLUGIN_FORMCREATOR_GLPI_MIN_VERSION', '9.4');
// Maximum GLPI version, exclusive
// Maximum GLPI version, exclusive (ignored if PLUGIN_FORMCREATOR_IS_OFFICIAL_RELEASE == false)
define ('PLUGIN_FORMCREATOR_GLPI_MAX_VERSION', '9.5');

define ('PLUGIN_FORMCREATOR_TEXTAREA_FIX', true);
Expand Down

0 comments on commit 965b10b

Please sign in to comment.