--- terms_of_use_orig.module	2008-08-06 07:11:34.000000000 -0500
+++ terms_of_use.module	2008-12-12 17:04:11.000000000 -0600
@@ -133,7 +133,7 @@ function terms_of_use_form_user_register
   // Adding the fieldset.
   $form['terms_of_use'] = array(
     '#type' => 'fieldset',
-    '#title' => variable_get('terms_of_use_fieldset_name', t('Terms of Use')),
+    '#title' => check_plain(variable_get('terms_of_use_fieldset_name', t('Terms of Use'))),
     '#weight' => 10,
   );
 
@@ -150,7 +150,7 @@ function terms_of_use_form_user_register
   // Adding the checkbox to the fieldset.
   $form['terms_of_use']['I_agree'] = array(
     '#type' => 'checkbox',
-    '#title' => variable_get('terms_of_use_checkbox_label', t('I agree with these terms.')) . '&nbsp;<span class="form-required" title="This field is required.">*</span>',
+    '#title' => check_plain(variable_get('terms_of_use_checkbox_label', t('I agree with these terms.'))) . '&nbsp;<span class="form-required" title="This field is required.">*</span>',
     '#required' => TRUE,
     '#element_validate' => array('_terms_of_use_validate_checkbox'),
   );
