From ee852647725f810e1b8097639616342d44b0e59c Mon Sep 17 00:00:00 2001 From: TheGreatDoc <32565115+TheGreatDoc@users.noreply.github.com> Date: Sat, 15 Sep 2018 11:16:45 +0200 Subject: [PATCH] Switch IRC to Discord link in database validation (#9209) --- LibreNMS/Validations/Database.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LibreNMS/Validations/Database.php b/LibreNMS/Validations/Database.php index cb41368810..57d1448d9e 100644 --- a/LibreNMS/Validations/Database.php +++ b/LibreNMS/Validations/Database.php @@ -194,7 +194,7 @@ class Database extends BaseValidation if (empty($schema_update)) { $validator->ok('Database schema correct'); } else { - $result = ValidationResult::fail("We have detected that your database schema may be wrong, please report the following to us on IRC or the community site (https://t.libren.ms/5gscd):") + $result = ValidationResult::fail("We have detected that your database schema may be wrong, please report the following to us on Discord (https://t.libren.ms/discord) or the community site (https://t.libren.ms/5gscd):") ->setFix('Run the following SQL statements to fix.') ->setList('SQL Statements', $schema_update); $validator->result($result);