Minor wording change (spiders to bots) in footer.

This commit is contained in:
Retro_Guy 2023-09-04 09:08:22 -07:00
parent d205bfa6a4
commit 97e2a04c1f
1 changed files with 2 additions and 2 deletions

View File

@ -51,10 +51,10 @@ function count_users()
}
if ($bot_count == 1) {
$bot_are = 'is';
$bot_users = 'spider';
$bot_users = 'bot';
} else {
$bot_are = 'are';
$bot_users = 'spiders';
$bot_users = 'bots';
}
$session_info = '<h1 class="np_thread_headline">There ' . $are . ' currently ' . $count . ' ' . $users . ' online / plus ' . $bot_count . ' ' . $bot_users . '<br />Total messages: ' . number_format(count_articles()) . '</h1>' . "\r\n";
file_put_contents($session_save_file, $session_info);