Changed the max character length for tags on media to 255. Only had to change one line in mediagoblin/config_spec.ini

in response to isses.mediagoblin.org/ticket/601
This commit is contained in:
nattily pigeonfowl 2013-04-16 16:25:59 -04:00
parent d38e9779dd
commit 86bd1f3caf

View File

@ -32,7 +32,7 @@ email_smtp_pass = string(default=None)
allow_registration = boolean(default=True)
# tag parsing
tags_max_length = integer(default=50)
tags_max_length = integer(default=255)
# Whether comments are ascending or descending
comments_ascending = boolean(default=True)