Skip to content

Commit

Permalink
fix(form): bad quote in FORM HTML tag
Browse files Browse the repository at this point in the history
Signed-off-by: btry <tbugier@teclib.com>
  • Loading branch information
btry committed Sep 12, 2018
1 parent 39a4533 commit 3883c1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inc/form.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -921,7 +921,7 @@ public function displayUserForm(CommonGLPI $item) {
echo Html::css("plugins/formcreator/css/print_form.css", ['media' => 'print']);

// Display form
echo "<form name='formcreator_form'".$item->getID()."' method='post' role='form' enctype='multipart/form-data'
echo "<form name='formcreator_form".$item->getID()."' method='post' role='form' enctype='multipart/form-data'
action='". $CFG_GLPI['root_doc']."/plugins/formcreator/front/form.form.php'
class='formcreator_form form_horizontal'>";
echo "<h1 class='form-title'>";
Expand Down

0 comments on commit 3883c1c

Please sign in to comment.