MDL-28535 SCORM remove old IE 6 related warning about zlib

This commit is contained in:
Dan Marsden
2011-07-30 10:40:57 +12:00
committed by Petr Skoda
parent 5a5e7bb3b1
commit f166ab0bec
-4
View File
@@ -17,10 +17,6 @@ class mod_scorm_mod_form extends moodleform_mod {
if (!$CFG->slasharguments) {
$mform->addElement('static', '', '',$OUTPUT->notification(get_string('slashargs', 'scorm'), 'notifyproblem'));
}
$zlib = ini_get('zlib.output_compression'); //check for zlib compression - if used, throw error because of IE bug. - SEE MDL-16185
if (isset($zlib) && $zlib) {
$mform->addElement('static', '', '',$OUTPUT->notification(get_string('zlibwarning', 'scorm'), 'notifyproblem'));
}
//-------------------------------------------------------------------------------
$mform->addElement('header', 'general', get_string('general', 'form'));