From: Cash Costello Date: Tue, 28 Jun 2011 11:47:37 +0000 (-0400) Subject: Fixes #3579 using input/plaintext in the wire form X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=0924491d5aa61c47ba60506c6398b14a30e1cb27;p=lorea%2Felgg.git Fixes #3579 using input/plaintext in the wire form --- diff --git a/mod/thewire/views/default/forms/thewire/add.php b/mod/thewire/views/default/forms/thewire/add.php index 743294dcc..8607b3662 100644 --- a/mod/thewire/views/default/forms/thewire/add.php +++ b/mod/thewire/views/default/forms/thewire/add.php @@ -20,8 +20,13 @@ if ($post) { 'value' => $post->guid, )); } + +echo elgg_view('input/plaintext', array( + 'name' => 'body', + 'class' => 'mtm', + 'id' => 'thewire-textarea', +)); ?> -
140