Remove text about report sql issues (#13307)

This commit is contained in:
Jellyfrog
2021-10-01 14:03:53 -05:00
committed by GitHub
co-authored by GitHub
parent c84b462ac0
commit 8ffd573cf2
+2 -2
View File
@@ -328,8 +328,8 @@ 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 Discord (https://t.libren.ms/discord) or the community site (https://t.libren.ms/5gscd):')
->setFix('Run the following SQL statements to fix.')
$result = ValidationResult::fail('We have detected that your database schema may be wrong')
->setFix('Run the following SQL statements to fix it')
->setList('SQL Statements', $schema_update);
$validator->result($result);
}