From e16c4f08647587b73f62dc36ad88ce444f8d796d Mon Sep 17 00:00:00 2001 From: Tim Date: Tue, 17 Sep 2019 12:56:36 +0200 Subject: [PATCH] Spelling --- src/psm/Util/Server/Updater/StatusUpdater.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/psm/Util/Server/Updater/StatusUpdater.php b/src/psm/Util/Server/Updater/StatusUpdater.php index 369d3496..20db4dcf 100644 --- a/src/psm/Util/Server/Updater/StatusUpdater.php +++ b/src/psm/Util/Server/Updater/StatusUpdater.php @@ -152,11 +152,11 @@ class StatusUpdater { } } } - // PATCH Arkhee : fix/last-online-stuck-on-never-if-webpage-too-large - // TThe update un "servers" table does not work - // Symptom : "Last online" stays stuck on "never" + // PATCH Arkhee: fix/last-online-stuck-on-never-if-webpage-too-large + // Updating table "servers" does not work + // Symptom: "Last online" stays stuck on "never" // Reason: last_output contains the full webpage, too long for the query - // _This may depend on mysql configuration on the server_, explaining why some have the problem or not + // This may depend on mysql configuration on the server_, explaining why some have the problem or not // Field is 255 Chars, and request does not work anyway is loaded web page is too large in last_output // So force truncate to 250 or less before query $save["last_output"]=substr($save["last_output"],0,250);