Index: skinr.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/skinr/skinr.module,v
retrieving revision 1.10
diff -u -r1.10 skinr.module
--- skinr.module	20 Oct 2009 03:54:42 -0000	1.10
+++ skinr.module	6 Dec 2009 05:28:31 -0000
@@ -142,7 +142,7 @@
         $template_options = array();
         foreach ($info[$theme->name]['skins'] as $skin_id => $skin) {
           // Check if this skin applies to this hook
-          if (!in_array('*', $skin['features']) && !in_array($preprocess_hook, $skin['features'])) {
+          if (!is_array($skin['features']) || (!in_array('*', $skin['features']) && !in_array($preprocess_hook, $skin['features']))) {
             continue;
           }
 

