From: skodak Date: Tue, 15 May 2007 08:33:22 +0000 (+0000) Subject: MDL-9798 workaround for handling of object tag in buggy IE; merged from MOODLE_18_STABLE X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=28b2891e4ca6669d1f0fa182e5172a711d5c7a3c;p=moodle.git MDL-9798 workaround for handling of object tag in buggy IE; merged from MOODLE_18_STABLE --- diff --git a/user/policy.php b/user/policy.php index bc4c83f062..f43a99f608 100644 --- a/user/policy.php +++ b/user/policy.php @@ -44,11 +44,20 @@ 500, 500, 'Popup window', 'none', true); echo ''; - $linkyes = 'policy.php'; + // see MDL-9798 +/* $linkyes = 'policy.php'; $optionsyes = array('agree'=>1, 'sesskey'=>sesskey()); $linkno = $CFG->wwwroot.'/login/logout.php'; $optionsno = array('sesskey'=>sesskey()); - notice_yesno($strpolicyagree, $linkyes, $linkno, $optionsyes, $optionsno); + notice_yesno($strpolicyagree, $linkyes, $linkno, $optionsyes, $optionsno);*/ + + print_box_start('generalbox', 'notice'); + echo '

'. $strpolicyagree .'

'; + echo '
'; + echo ''; + echo ''; + echo '
'; + print_box_end(); print_footer();