Make sure incompatible plugins can be uninstalled from the web ui
This commit is contained in:
@@ -96,7 +96,10 @@ class PluginController extends BaseController
|
|||||||
public function confirm()
|
public function confirm()
|
||||||
{
|
{
|
||||||
$pluginId = $this->request->getStringParam('pluginId');
|
$pluginId = $this->request->getStringParam('pluginId');
|
||||||
$plugins = $this->pluginLoader->getPlugins();
|
$plugins = array_merge(
|
||||||
|
$this->pluginLoader->getPlugins(),
|
||||||
|
$this->pluginLoader->getIncompatiblePlugins()
|
||||||
|
);
|
||||||
|
|
||||||
$this->response->html($this->template->render('plugin/remove', array(
|
$this->response->html($this->template->render('plugin/remove', array(
|
||||||
'plugin_id' => $pluginId,
|
'plugin_id' => $pluginId,
|
||||||
|
|||||||
Reference in New Issue
Block a user