summaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2015-05-10 08:45:56 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2015-05-10 08:45:56 +0000
commitf8a9a78ecfa50d53ca8416d296af8a02da8eb7d7 (patch)
treefa89b8059872fd51c48f2b66a7c4db59d9dc8eb0 /app
parent77e657b719f57b31002479a92d8e3a838dfa39a5 (diff)
downloadredmine-f8a9a78ecfa50d53ca8416d296af8a02da8eb7d7.tar.gz
redmine-f8a9a78ecfa50d53ca8416d296af8a02da8eb7d7.zip
Raises 60-character limit for document titles to 255 (#12312).
git-svn-id: http://svn.redmine.org/redmine/trunk@14261 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r--app/models/document.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/document.rb b/app/models/document.rb
index d6b96ac98..a522168fd 100644
--- a/app/models/document.rb
+++ b/app/models/document.rb
@@ -30,7 +30,7 @@ class Document < ActiveRecord::Base
acts_as_activity_provider :scope => preload(:project)
validates_presence_of :project, :title, :category
- validates_length_of :title, :maximum => 60
+ validates_length_of :title, :maximum => 255
attr_protected :id
after_create :send_notification