Defect #31886 » html.patch
redmine/app/views/news/_form.rhtml | ||
---|---|---|
2 | 2 |
<div class="box"> |
3 | 3 |
<p><%= f.text_field :title, :required => true, :size => 60 %></p> |
4 | 4 |
<p><%= f.text_area :summary, :cols => 60, :rows => 2 %></p> |
5 |
<p><%= f.text_area :description, :required => true, :cols => 60, :rows => 15 %></p> |
|
5 |
<p><%= f.text_area :description, maxlength => 65535, :required => true, :cols => 60, :rows => 15 %></p>
|
|
6 | 6 |
</div> |
7 | 7 | |
8 | 8 |
<% unless $RDM_TEXTILE_DISABLED %> |
... | ... | |
17 | 17 |
} |
18 | 18 |
//]]> |
19 | 19 |
</script> |
20 |
<% end %> |
|
20 |
<% end %> |