From: scyrma <scyrma> Date: Wed, 11 Jun 2008 03:51:05 +0000 (+0000) Subject: MDL-14739 - move the emoticons configuration in the common section X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=e7a3f4299f91607c9e911dd8671202d5c83f9e13;p=moodle.git MDL-14739 - move the emoticons configuration in the common section --- diff --git a/admin/settings/appearance.php b/admin/settings/appearance.php index cb747b9d5e..041230844c 100644 --- a/admin/settings/appearance.php +++ b/admin/settings/appearance.php @@ -58,6 +58,7 @@ if ($hassiteconfig) { // speedup for non-admins, add all caps used on this page } $temp->add(new admin_setting_configselect('defaulthtmleditor', get_string('defaulthtmleditor', 'admin'), null, 'tinymce', $htmleditors)); $temp->add(new admin_setting_configcheckbox('htmleditor', get_string('usehtmleditor', 'admin'), get_string('confightmleditor','admin'), 1)); + $temp->add(new admin_setting_emoticons()); $ADMIN->add('htmleditor', $temp); $temp = new admin_settingpage('htmlarea', get_string('htmlarea', 'admin')); @@ -71,7 +72,6 @@ if ($hassiteconfig) { // speedup for non-admins, add all caps used on this page $temp->add(new admin_setting_special_editordictionary()); } $temp->add(new admin_setting_special_editorhidebuttons()); - $temp->add(new admin_setting_emoticons()); $ADMIN->add('htmleditor', $temp); $temp = new admin_settingpage('tinymce', get_string('tinymce', 'admin'));