diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-09-21 21:13:06 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-09-21 21:13:06 +0000 |
commit | 7b12145ed904e531fa4e573cb5efb50abdedf6ac (patch) | |
tree | 4be4fb23985aa6371bebb3e185aa300e9915f816 /app/views/wiki | |
parent | 5882629e26abcc6dcf7d1f0a0e62982ea1a308ca (diff) | |
download | redmine-7b12145ed904e531fa4e573cb5efb50abdedf6ac.tar.gz redmine-7b12145ed904e531fa4e573cb5efb50abdedf6ac.zip |
Raises wiki edits comments limit to 1024 (#19886).
git-svn-id: http://svn.redmine.org/redmine/trunk@14622 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/wiki')
-rw-r--r-- | app/views/wiki/edit.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/wiki/edit.html.erb b/app/views/wiki/edit.html.erb index 2a2ba312a..566e96029 100644 --- a/app/views/wiki/edit.html.erb +++ b/app/views/wiki/edit.html.erb @@ -29,7 +29,7 @@ <% end %> <% end %> -<p><label><%= l(:field_comments) %></label><%= f.text_field :comments, :size => 120 %></p> +<p><label><%= l(:field_comments) %></label><%= f.text_field :comments, :size => 120, :maxlength => 1024 %></p> <p><label><%=l(:label_attachment_plural)%></label><%= render :partial => 'attachments/form' %></p> </div> |