Index: theme/theme.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/features/theme/theme.inc,v
retrieving revision 1.1.2.10
diff -u -r1.1.2.10 theme.inc
--- theme/theme.inc	2 Oct 2009 20:16:58 -0000	1.1.2.10
+++ theme/theme.inc	2 Nov 2009 16:33:30 -0000
@@ -262,7 +262,7 @@
  */
 function theme_features_component_list($items, $source = array()) {
   $list = array();
-  foreach ($items as $component) {
+  foreach (array_keys($items) as $component) {
     // If component is not in source list, it was autodetected
     if (!in_array($component, $source)) {
       $list[] = "<span class='features-detected'>{$component}</span>";
@@ -274,7 +274,7 @@
   foreach ($source as $component) {
     // If a source component is no longer in the items, it was removed because
     // it is provided by a dependency.
-    if (!in_array($component, $items)) {
+    if (!isset($items[$component])) {
       $list[] = "<span class='features-dependency'>{$component}</span>";
     }
   }
