We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce276c5 commit 5d58c7bCopy full SHA for 5d58c7b
1 file changed
src/Controllers/InstallController.php
@@ -375,13 +375,14 @@ public function inactiveSettings()
375
}
376
377
// Application active migrations
378
- $default_Settings = $seeder->getDefaults();
+ $seeder_settings = $seeder->getDefaults();
379
380
- if (count($installed_settings) == count($default_Settings)) {
+ $inactive_settings = array_diff_key($seeder_settings, $installed_settings);
381
+
382
+ if (!$inactive_settings) {
383
return false;
384
-
- $inactive_settings = array_diff_key($default_Settings, $installed_settings);
385
386
return $inactive_settings;
387
388
0 commit comments