Fix PackageEnableUpgradeOverrideForm
authorTim Düsterhus <duesterhus@woltlab.com>
Fri, 3 Jun 2022 12:14:54 +0000 (14:14 +0200)
committerTim Düsterhus <duesterhus@woltlab.com>
Fri, 3 Jun 2022 12:14:54 +0000 (14:14 +0200)
The form differs from the update scripts by also having a title for each issue.

wcfsetup/install/files/lib/acp/form/PackageEnableUpgradeOverrideForm.class.php

index 978d86fc2b4864b8932de0409e547fea9b17c555..08796811fe9a3d01d4692ddf44b7260d1a103193 100644 (file)
@@ -91,12 +91,17 @@ final class PackageEnableUpgradeOverrideForm extends AbstractFormBuilderForm
 
         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;