From 97e2a04c1ff255cdad7010696e48677c4e66dd22 Mon Sep 17 00:00:00 2001 From: Retro_Guy Date: Mon, 4 Sep 2023 09:08:22 -0700 Subject: [PATCH] Minor wording change (spiders to bots) in footer. --- Rocksolid_Light/rslight/scripts/count_users.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Rocksolid_Light/rslight/scripts/count_users.php b/Rocksolid_Light/rslight/scripts/count_users.php index 4c49ccf..28622e4 100644 --- a/Rocksolid_Light/rslight/scripts/count_users.php +++ b/Rocksolid_Light/rslight/scripts/count_users.php @@ -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 = '

There ' . $are . ' currently ' . $count . ' ' . $users . ' online / plus ' . $bot_count . ' ' . $bot_users . '
Total messages: ' . number_format(count_articles()) . '

' . "\r\n"; file_put_contents($session_save_file, $session_info);