Skip to content
This repository was archived by the owner on Jun 13, 2020. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion faq.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<p>The largest board owners are promoted to Global Volunteers. This is devised by an algorithm, but volunteers are only promoted with my express approval.</p>

<p>All new global volunteers are sent a message congratulating them on becoming global volunteers and explaining the position. Gloval volunteers simply delete CP, excessive spam and other illegal content that comes on the server and ban the posting users and their IP ranges.</p>
<p>All new global volunteers are sent a message congratulating them on becoming global volunteers and explaining the position. Global volunteers simply delete CP, excessive spam and other illegal content that comes on the server and ban the posting users and their IP ranges.</p>

<p>There is a large penalty for abusing their powers to ban users for other reasons. That penalty is that I will not only remove their global volunteer position, but also commandeer their board. I will then find another suitable owner for it among the board's users and give it to them.</p>

Expand Down
2 changes: 2 additions & 0 deletions js/quick-reply.js
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,8 @@
</th></tr>');

$postForm.attr('id', 'quick-reply');

$postForm.prependChild($dummyStuff); //Anti-autofill features in Chrome were not working because the nonsense div was the last element in the <form>

$postForm.appendTo($('body')).hide();
$origPostForm = $('form[name="post"]:first');
Expand Down
4 changes: 3 additions & 1 deletion templates/post_form.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<form name="post" onsubmit="return dopost(this);" enctype="multipart/form-data" action="{{ config.post_url }}" method="post">
<form name="post" onsubmit="return dopost(this);" enctype="multipart/form-data" action="{{ config.post_url }}" method="post" autocomplete="off">
<input style="display:none">
<input type="password" style="display:none">
{{ antibot.html() }}
{% if id %}<input type="hidden" name="thread" value="{{ id }}">{% endif %}
{{ antibot.html() }}
Expand Down