summaryrefslogtreecommitdiff
path: root/actions/pluginenable.php
diff options
context:
space:
mode:
Diffstat (limited to 'actions/pluginenable.php')
-rw-r--r--actions/pluginenable.php11
1 files changed, 9 insertions, 2 deletions
diff --git a/actions/pluginenable.php b/actions/pluginenable.php
index 2dbb3e395..4662f4368 100644
--- a/actions/pluginenable.php
+++ b/actions/pluginenable.php
@@ -104,8 +104,14 @@ class PluginEnableAction extends Action
}
$this->plugin = $this->arg('plugin');
- $defaultPlugins = common_config('plugins', 'default');
- if (!array_key_exists($this->plugin, $defaultPlugins)) {
+ $files = StatusNet::pluginFiles($this->plugin);
+ $found = false;
+ foreach ($files as $file) {
+ if (file_exists($file)) {
+ $found = true;
+ }
+ }
+ if (!$found) {
$this->clientError(_('No such plugin.'));
return false;
}
@@ -127,6 +133,7 @@ class PluginEnableAction extends Action
{
$key = 'disable-' . $this->plugin;
Config::save('plugins', $key, $this->overrideValue());
+ Config::save('plugin-list', $this->plugin, 1);
// @fixme this is a pretty common pattern and should be refactored down
if ($this->boolean('ajax')) {