Browse Source

Made thread name default and max more sane.

Ralfp 12 years ago
parent
commit
458475aa6b
1 changed files with 2 additions and 2 deletions
  1. 2 2
      misago/threads/fixtures.py

+ 2 - 2
misago/threads/fixtures.py

@@ -18,10 +18,10 @@ settings_fixtures = (
                 'description':  _('Minimal allowed thread name length.'),
                 'description':  _('Minimal allowed thread name length.'),
             }),
             }),
             ('thread_name_max', {
             ('thread_name_max', {
-                'value':        35,
+                'value':        60,
                 'type':         "integer",
                 'type':         "integer",
                 'input':        "text",
                 'input':        "text",
-                'extra':        {'min': 5, 'max': 60},
+                'extra':        {'min': 5, 'max': 100},
                 'name':         _("Max. Thread Name Length"),
                 'name':         _("Max. Thread Name Length"),
                 'description':  _('Maximum allowed thread name length.'),
                 'description':  _('Maximum allowed thread name length.'),
             }),
             }),