The form differs from the update scripts by also having a title for each issue.
if ($nonInnoDbSearch) {
if (WCF::getLanguage()->getFixedLanguageCode() === 'de') {
- $message = "Es wurden noch nicht alle Tabellen auf InnoDB migriert.";
+ $title = "Umstellung auf InnoDB-Suchindex";
+ $description = "Es wurden noch nicht alle Tabellen auf InnoDB migriert.";
} else {
- $message = "The migration to InnoDB was not yet performed for all database tables.";
+ $title = "Migration to InnoDB Search Index";
+ $description = "The migration to InnoDB was not yet performed for all database tables.";
}
- $issues[] = $message;
+ $issues[] = [
+ 'title' => $title,
+ 'description' => $description,
+ ];
}
return $issues;