From 0dfad99982e9ac329833b8c136ee6c36457f7475 Mon Sep 17 00:00:00 2001 From: Retro_Guy Date: Thu, 7 Jan 2021 18:41:43 -0700 Subject: [PATCH] Minor wording change in log entry in article-flat.php --- Rocksolid_Light/rocksolid/article-flat.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rocksolid_Light/rocksolid/article-flat.php b/Rocksolid_Light/rocksolid/article-flat.php index 8cf8afa..cbf4fc4 100644 --- a/Rocksolid_Light/rocksolid/article-flat.php +++ b/Rocksolid_Light/rocksolid/article-flat.php @@ -26,7 +26,7 @@ if (($rate > .15) && ($_SESSION['views'] > 5)) { header("HTTP/1.0 429 Too Many Requests"); if(!isset($_SESSION['throttled'])) { - file_put_contents($logfile, "\n".format_log_date()." ".$config_name." Too many requests from ".$_SERVER['REMOTE_ADDR']." requesting: ".$group, FILE_APPEND); + file_put_contents($logfile, "\n".format_log_date()." ".$config_name." Too many requests from ".$_SERVER['REMOTE_ADDR']." throttling", FILE_APPEND); $_SESSION['throttled'] = true; } exit(0);