Skip to content

Commit

Permalink
Added fix to refer to property instead of method
Browse files Browse the repository at this point in the history
  • Loading branch information
jaxwilko committed Jan 5, 2025
1 parent db75757 commit c8bbe35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/system/classes/extensions/PluginManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ public function migratePluginReplacements(): static
throw new ApplicationException(Lang::get('system::lang.plugins.replace.multi_install_error'));
}
foreach ($replaces as $replace) {
$this->versionManager()->replacePlugin($plugin, $replace);
$this->versionManager->replacePlugin($plugin, $replace);
}
}

Expand Down

0 comments on commit c8bbe35

Please sign in to comment.