Skip to content

Commit

Permalink
Fixed #85
Browse files Browse the repository at this point in the history
  • Loading branch information
Parziphal committed Jul 29, 2016
1 parent 6ea152b commit 87d6224
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions app/views/dmail/_compose.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,15 @@
</tr>
<tr>
<th><label for="dmail_title"><?= $this->t('.form.title') ?></label></th>
<td><?= $this->textField('dmail', 'title') ?></td>
<td>
<input type="text" id="dmail_title" name="dmail[title]" value="<?= $this->h($this->dmail->title) ?>" />
</td>
</tr>
<tr>
<th><label for="dmail_body"><?=$this->t('.form.body') ?></label></th>
<td><?= $this->textArea('dmail', 'body', ['size' => "50x25", 'class' => "default"]) ?></td>
<td>
<textarea id="dmail_body" cols="50" name="dmail[body]" rows="25" class="default"><?= $this->h($this->dmail->body) ?></textarea>
</td>
</tr>
</tbody>
</table>
Expand Down

0 comments on commit 87d6224

Please sign in to comment.