From fb9c69ea36c60503c01f6cbbd10d848e91080c11 Mon Sep 17 00:00:00 2001 From: "Jeroen van Meeuwen (Kolab Systems)" Date: Thu, 29 Jan 2015 19:10:31 +0100 Subject: [PATCH] Rename notes_enabled / notes_disabled to hold the plugin's full name (kolab_notes_{dis,en}enabled) (#4429) --- plugins/kolab_notes/kolab_notes.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/kolab_notes/kolab_notes.php b/plugins/kolab_notes/kolab_notes.php index b472d2a4..6471de1f 100644 --- a/plugins/kolab_notes/kolab_notes.php +++ b/plugins/kolab_notes/kolab_notes.php @@ -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; }