Index: views_slideshow_plugin_style_slideshow.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/views_slideshow/Attic/views_slideshow_plugin_style_slideshow.inc,v
retrieving revision 1.1.2.1.2.8
diff -u -p -r1.1.2.1.2.8 views_slideshow_plugin_style_slideshow.inc
--- views_slideshow_plugin_style_slideshow.inc	13 Apr 2010 06:21:51 -0000	1.1.2.1.2.8
+++ views_slideshow_plugin_style_slideshow.inc	13 Apr 2010 07:36:56 -0000
@@ -26,9 +26,9 @@ class views_slideshow_plugin_style_slide
     }
 
     // Eveything below here is what's needed for views slideshow.
-    if (isset($options['singleframe']) && is_array($options['singleframe'])) {
-      foreach($options['singleframe'] as $index => $value) {
-        $this->options['views_slideshow_singleframe'][$index] = $value;
+    if (in_array($options['mode'], array('singleframe', 'thumbnailhover', 'menu', 'slider', 'ddblock')) && is_array($options[$options['mode']])) {
+      foreach($options[$options['mode']] as $index => $value) {
+        $this->options['views_slideshow_' . $options['mode']][$index] = $value;
       }
     }
   }
