aboutsummaryrefslogtreecommitdiff
path: root/views/partials/bottom.html
diff options
context:
space:
mode:
authorFChannel <>2022-07-16 09:49:54 -0700
committerFChannel <>2022-07-16 11:13:28 -0700
commit3a7664d404bca40cb3234924fa969c0ae133d085 (patch)
tree2468e548c760f52274178cdf0f6a0d3923f59b65 /views/partials/bottom.html
parenta22b213ddef7e86ef49366ffd6351adf0d28fcbe (diff)
fixed replies to post not showing up when following other boardsv0.1.1
added content length changes to alter database
Diffstat (limited to 'views/partials/bottom.html')
-rw-r--r--views/partials/bottom.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/views/partials/bottom.html b/views/partials/bottom.html
index 35e8c4a..c48821b 100644
--- a/views/partials/bottom.html
+++ b/views/partials/bottom.html
@@ -6,7 +6,7 @@
<form onsubmit="sessionStorage.setItem('element-closed-reply', true)" id="reply-post" action="/post" method="post" enctype="multipart/form-data">
<input id="reply-name" name="name" type="text" placeholder="Name" maxlength="100">
<input id="reply-options" name="options" type="text" placeholder="Options" maxlength="100">
- <textarea id="reply-comment" name="comment" maxlength="2000" oninput="sessionStorage.setItem('element-reply-comment', document.getElementById('reply-comment').value)"></textarea>
+ <textarea id="reply-comment" name="comment" maxlength="4500" oninput="sessionStorage.setItem('element-reply-comment', document.getElementById('reply-comment').value)"></textarea>
<input id="reply-file" name="file" type="file">
<input id="reply-submit" type="submit" value="Reply" style="float: right;">
<input type="hidden" id="inReplyTo-box" name="inReplyTo" value="{{ .Board.InReplyTo }}">