From 0187510fb315d897feb9dd9d4ae70521a11e893a Mon Sep 17 00:00:00 2001 From: Angel Fernando Quiroz Campos Date: Tue, 21 Apr 2015 15:16:34 -0500 Subject: [PATCH] Fix glossary glossary plugin loading --- .../CoreBundle/Component/Editor/CkEditor/Toolbar/Basic.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Chamilo/CoreBundle/Component/Editor/CkEditor/Toolbar/Basic.php b/src/Chamilo/CoreBundle/Component/Editor/CkEditor/Toolbar/Basic.php index ee4f087e2c..9328d04d14 100644 --- a/src/Chamilo/CoreBundle/Component/Editor/CkEditor/Toolbar/Basic.php +++ b/src/Chamilo/CoreBundle/Component/Editor/CkEditor/Toolbar/Basic.php @@ -77,7 +77,7 @@ class Basic extends Toolbar // Adding plugins depending of platform conditions $plugins = array(); - if (api_get_setting('show_glossary_in_documents') != 'none') { + if (api_get_setting('show_glossary_in_documents') == 'ismanual') { $plugins[] = 'glossary'; }