forked from GithubBackups/vichan
This commit is contained in:
commit
047d932e5c
@ -33,7 +33,7 @@ th.headerSortDown {
|
||||
}
|
||||
</style>
|
||||
CSS;
|
||||
$body .= '<table class="modlog" style="width:auto"><thead><tr><th>L</th><th>Board</th><th>Posts in last hour</th><th>Total posts</th><th>Created</th></thead></tr><tbody>';
|
||||
$body .= '<table class="modlog" style="width:auto"><thead><tr><th>L</th><th>Board</th><th>Posts in last hour</th><th>Total posts</th><th>Created</th></tr></thead><tbody>';
|
||||
$total_posts_hour = 0;
|
||||
$total_posts = 0;
|
||||
|
||||
@ -95,7 +95,12 @@ foreach ($boards as $i => &$board) {
|
||||
$lock = '';
|
||||
}
|
||||
$board['ago'] = human_time_diff(strtotime($board['time']));
|
||||
$body .= "<tr><td>$img</td><td><a href='/{$board['uri']}/' title=\"{$board['title']}\">/{$board['uri']}/</a>$lock</td><td style='text-align:right'>{$board['pph']}</td><td style='text-align:right'>{$board['max']}</td><td>{$board['time']} ({$board['ago']} ago)</td></tr>";
|
||||
$body .= "<tr>";
|
||||
$body .= "<td>$img</td>";
|
||||
$body .= "<td><a href='/{$board['uri']}/' title=\"{$board['title']}\">/{$board['uri']}/</a>$lock</td>";
|
||||
$body .= "<td style='text-align:right'>{$board['pph']}</td>";
|
||||
$body .= "<td style='text-align:right'>{$board['max']}</td>";
|
||||
$body .= "<td>{$board['time']} ({$board['ago']} ago)</td></tr>";
|
||||
} else {
|
||||
unset($boards[$i]);
|
||||
$hidden_boards_total += 1;
|
||||
|
10
faq.php
10
faq.php
@ -10,10 +10,10 @@ $body = <<<EOT
|
||||
<li>Do not post, request, or link to any content illegal in the United States of America. Do not create boards with the sole purpose of posting or spreading such content.</li>
|
||||
</ul>
|
||||
<p>Other than that, you are free to institute whatever rules you want on your board.</p>
|
||||
<h2>How do I add more mods?</h2>
|
||||
<p>Give them your password. If you don't trust them enough for that, you probably shouldn't be making them a mod.</p>
|
||||
<h2>How do I add more volunteers?</h2>
|
||||
<p>Give them your password. If you don't trust them enough for that, you probably shouldn't be making them a volunteer.</p>
|
||||
<h2>How do I manage my board?</h2>
|
||||
<p>Go to <a href="/mod.php">the moderator panel</a> and click on the board link for your board.</p>
|
||||
<p>Go to <a href="/mod.php">the volunteer panel</a> and click on the board link for your board.</p>
|
||||
<h2>How do I contact the admin?</h2>
|
||||
<p>The admin can be reached at <tt>admin at 8chan dot co</tt>.</p>
|
||||
|
||||
@ -22,8 +22,8 @@ $body = <<<EOT
|
||||
|
||||
<p>If either of those is true, the board was deleted automatically. You are free to recreate it. I cannot restore it, so don't bother emailing me about it.</p>
|
||||
|
||||
<h2>How do I post as a mod on my board?</h2>
|
||||
<p>Make sure you are using the mod interface to view your board. The URL of your browser should be <a href="https://8chan.co/mod.php?/yourboard"><tt>https://8chan.co/mod.php?/yourboard</tt></a>. Then, put "## Board Moderator" in the name field. Write your post and click "Reply". It will appear with your mod capcode.</p>
|
||||
<h2>How do I post as a volunteer on my board?</h2>
|
||||
<p>Make sure you are using the volunteer interface to view your board. The URL of your browser should be <a href="https://8chan.co/mod.php?/yourboard"><tt>https://8chan.co/mod.php?/yourboard</tt></a>. Then, put "## Board volunteer" in the name field. Write your post and click "Reply". It will appear with your volunteer capcode.</p>
|
||||
|
||||
<h2>How do I donate?</h2>
|
||||
<p>Donations can be sent to 1NpQaXqmCBji6gfX8UgaQEmEstvVY7U32C (Bitcoin) or LUPgSCJt3iGeJXUETVhmnbQ89Riaq1yjZm (Litecoin). PayPal is also accepted @ fredrick.brennan1@gmail.com .</p>
|
||||
|
Loading…
x
Reference in New Issue
Block a user