From: skodak Date: Mon, 28 Aug 2006 18:46:37 +0000 (+0000) Subject: enabletrusttext can not be 1 by default - it is new, not much tested and maybe even... X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=bad211a3b9ca7851fcadafed9680f17112675664;p=moodle.git enabletrusttext can not be 1 by default - it is new, not much tested and maybe even insecure feature ;-) --- diff --git a/admin/settings/authenticationandsecurity.php b/admin/settings/authenticationandsecurity.php index db5b486afd..6dd090da0e 100644 --- a/admin/settings/authenticationandsecurity.php +++ b/admin/settings/authenticationandsecurity.php @@ -77,7 +77,7 @@ $temp->add(new admin_setting_configcheckbox('opentogoogle', get_string('opentogo $temp->add(new admin_setting_configtext('maxbytes', get_string('maxbytes', 'admin'), get_string('configmaxbytes', 'admin'), 0, PARAM_INT)); $temp->add(new admin_setting_configcheckbox('messaging', get_string('messaging', 'admin'), get_string('configmessaging','admin'), 1)); $temp->add(new admin_setting_configcheckbox('allowobjectembed', get_string('allowobjectembed', 'admin'), get_string('configallowobjectembed', 'admin'), 0)); -$temp->add(new admin_setting_configcheckbox('enabletrusttext', get_string('enabletrusttext', 'admin'), get_string('configenabletrusttext', 'admin'), 1)); +$temp->add(new admin_setting_configcheckbox('enabletrusttext', get_string('enabletrusttext', 'admin'), get_string('configenabletrusttext', 'admin'), 0)); $temp->add(new admin_setting_configselect('maxeditingtime', get_string('maxeditingtime','admin'), get_string('configmaxeditingtime','admin'), 1800, array(60 => get_string('numminutes', '', 1), 300 => get_string('numminutes', '', 5), 900 => get_string('numminutes', '', 15),