aboutsummaryrefslogtreecommitdiff
path: root/app/templates/macros/threads.html
diff options
context:
space:
mode:
authorrubenwardy <rw@rubenwardy.com>2020-07-29 17:33:12 +0100
committerrubenwardy <rw@rubenwardy.com>2020-07-29 17:33:12 +0100
commite931d6a88b2c986e7074a0f1b5423e9b1d85d882 (patch)
treed00dcfc489346055d2a3be8c2ad204f719cd5601 /app/templates/macros/threads.html
parenta8a3067ac90e380c81bfc61da3eee60e5a946cfa (diff)
downloadcheatdb-e931d6a88b2c986e7074a0f1b5423e9b1d85d882.tar.xz
Fix comment length checking
Diffstat (limited to 'app/templates/macros/threads.html')
-rw-r--r--app/templates/macros/threads.html2
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 %}