From: stronk7 Date: Fri, 21 Sep 2007 17:27:14 +0000 (+0000) Subject: Adding new setting to control XML headers. MDL-11216 X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=29c5c63e426436cc80ffac39d722e490cb33b2b1;p=moodle.git Adding new setting to control XML headers. MDL-11216 --- diff --git a/admin/settings/server.php b/admin/settings/server.php index 44f7293e10..af8aab2585 100644 --- a/admin/settings/server.php +++ b/admin/settings/server.php @@ -103,6 +103,7 @@ $ADMIN->add('server', $temp); $temp = new admin_settingpage('debugging', get_string('debugging', 'admin')); $temp->add(new admin_setting_special_debug()); $temp->add(new admin_setting_special_debugdisplay()); +$temp->add(new admin_setting_configcheckbox('xmlstrictheaders', get_string('xmlstrictheaders', 'admin'), get_string('configxmlstrictheaders', 'admin'), 0)); $temp->add(new admin_setting_configcheckbox('debugsmtp', get_string('debugsmtp', 'admin'), get_string('configdebugsmtp', 'admin'), 0)); $temp->add(new admin_setting_special_perfdebug()); $ADMIN->add('server', $temp);