Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Options

how can i edit discussin title more than 100

edited March 2010 in Vanilla 2.0 - 2.8
in my language 100 is not enough how can i put more than 100

thank you people.

Comments

  • Options
    MarkMark Vanilla Staff
    You'll need to alter your discussion table to allow more characters:

    ALTER TABLE GDN_Discussions CHANGE Name Name varchar(255);

    And then you'll need to implement a theme and remove the maxlength value from your form. Here's the offending line in /applications/vanilla/views/post/discussion.php:

    echo $this->Form->TextBox('Name', array('maxlength' => 100));
  • Options
    thank you mark
    and i alter in gdn_draft too.
Sign In or Register to comment.