Rename notes_enabled / notes_disabled to hold the plugin's full name (kolab_notes_{dis,en}enabled) (#4429)

This commit is contained in:
Jeroen van Meeuwen (Kolab Systems) 2015-01-29 19:10:31 +01:00
parent 038e269d51
commit fb9c69ea36

View file

@ -60,7 +60,7 @@ class kolab_notes extends rcube_plugin
public function startup($args)
{
// the notes module can be enabled/disabled by the kolab_auth plugin
if ($this->rc->config->get('notes_disabled', false) || !$this->rc->config->get('notes_enabled', true)) {
if ($this->rc->config->get('kolab_notes_disabled', false) || !$this->rc->config->get('kolab_notes_enabled', true)) {
return;
}