Skip to content

Commit

Permalink
fix(targetticket): fix HTML
Browse files Browse the repository at this point in the history
Signed-off-by: btry <[email protected]>
  • Loading branch information
btry committed Oct 22, 2018
1 parent e39028b commit 00f81fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions inc/targetticket.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public function showForm($options=[]) {

echo '<tr class="line1">';
echo '<td width="15%"><strong>' . __('Name') . ' <span style="color:red;">*</span></strong></td>';
echo '<td width="85%"><input type="text" name="name" style="width:704px;" value="' . $target['name'] . '"></textarea</td>';
echo '<td width="85%"><input type="text" name="name" style="width:704px;" value="' . $target['name'] . '" /></td>';
echo '</tr>';

echo '</table>';
Expand All @@ -110,7 +110,7 @@ public function showForm($options=[]) {

echo '<tr class="line1">';
echo '<td><strong>' . __('Ticket title', 'formcreator') . ' <span style="color:red;">*</span></strong></td>';
echo '<td colspan="3"><input type="text" name="title" style="width:704px;" value="' . $this->fields['name'] . '"></textarea</td>';
echo '<td colspan="3"><input type="text" name="title" style="width:704px;" value="' . $this->fields['name'] . '"/></td>';
echo '</tr>';

echo '<tr class="line0">';
Expand Down

0 comments on commit 00f81fc

Please sign in to comment.