diff options
| author | rubenwardy <rw@rubenwardy.com> | 2020-07-29 17:33:12 +0100 |
|---|---|---|
| committer | rubenwardy <rw@rubenwardy.com> | 2020-07-29 17:33:12 +0100 |
| commit | e931d6a88b2c986e7074a0f1b5423e9b1d85d882 (patch) | |
| tree | d00dcfc489346055d2a3be8c2ad204f719cd5601 /app/templates/macros/threads.html | |
| parent | a8a3067ac90e380c81bfc61da3eee60e5a946cfa (diff) | |
| download | cheatdb-e931d6a88b2c986e7074a0f1b5423e9b1d85d882.tar.xz | |
Fix comment length checking
Diffstat (limited to 'app/templates/macros/threads.html')
| -rw-r--r-- | app/templates/macros/threads.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/templates/macros/threads.html b/app/templates/macros/threads.html index d19aae5..a69c474 100644 --- a/app/templates/macros/threads.html +++ b/app/templates/macros/threads.html @@ -85,7 +85,7 @@ {% else %} <form method="post" action="{{ url_for('threads.view', id=thread.id)}}" class="card-body"> <input type="hidden" name="csrf_token" value="{{ csrf_token() }}" /> - <textarea class="form-control markdown" required maxlength=500 name="comment"></textarea><br /> + <textarea class="form-control markdown" required maxlength=2000 name="comment"></textarea><br /> <input class="btn btn-primary" type="submit" value="Comment" /> </form> {% endif %} |
