Index: render.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/render/render.install,v
retrieving revision 1.1.2.4
diff -u -p -r1.1.2.4 render.install
--- render.install	13 May 2008 23:27:48 -0000	1.1.2.4
+++ render.install	1 Jun 2008 17:26:20 -0000
@@ -94,3 +94,13 @@ function render_update_1() {
   return $ret;
 }
 
+/**
+ * Remove hover color; breaks sIFR in newer Flash versions. @see #224713
+ */
+function render_update_5100() {
+  $ret = array();
+  drupal_load('module', 'render');
+  render_render_rules_js();
+  return $ret;
+}
+
Index: plugins/sifr.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/render/plugins/sifr.inc,v
retrieving revision 1.1.2.2
diff -u -p -r1.1.2.2 sifr.inc
--- plugins/sifr.inc	21 Feb 2008 12:06:07 -0000	1.1.2.2
+++ plugins/sifr.inc	1 Jun 2008 16:53:18 -0000
@@ -146,12 +146,15 @@ function sifr_render_rule(&$form, $edit)
     '#size' => 12,
     '#default_value' => $edit['linkcolor'] ? $edit['linkcolor'] : '#000000',
   );
+  // Hover color breaks sIFR in newer Flash versions. @see #224713
+  /*
   $form['colors']['hovercolor'] = array(
     '#type' => 'textfield',
     '#title' => t('Hover Color'),
     '#size' => 12,
     '#default_value' => $edit['hovercolor'] ? $edit['hovercolor'] : '#666666',
   );
+  */
   $form['colors']['bgcolor'] = array(
     '#type' => 'textfield',
     '#title' => t('Text Background Color'),
@@ -270,7 +273,8 @@ function sifr_render_render_rule_js($rul
   $properties['sFlashSrc']      = $fontpath;
   $properties['sColor']         = $rule['color'];
   $properties['sLinkColor']     = $rule['linkcolor'];
-  $properties['sHoverColor']    = $rule['hovercolor'];
+  // Hover color breaks sIFR in newer Flash versions. @see #224713
+  // $properties['sHoverColor']    = $rule['hovercolor'];
   $properties['sBgColor']       = $rule['bgcolor'];
   $properties['nPaddingTop']    = is_numeric($rule['paddingtop']) ? $rule['paddingtop'] : null;
   $properties['nPaddingRight']  = is_numeric($rule['paddingright']) ? $rule['paddingright'] : null;
