Index: modules/system/system.admin.inc =================================================================== RCS file: /cvs/drupal/drupal/modules/system/system.admin.inc,v retrieving revision 1.194 diff -u -p -r1.194 system.admin.inc --- modules/system/system.admin.inc 25 Aug 2009 10:37:36 -0000 1.194 +++ modules/system/system.admin.inc 25 Aug 2009 13:35:40 -0000 @@ -211,7 +211,8 @@ function system_themes_form() { $screenshot = NULL; // Create a list which includes the current theme and all its base themes. if (isset($themes[$theme->name]->base_themes)) { - $theme_keys = array_keys($themes[$theme->name]->base_themes) + array($theme->name); + $theme_keys = array_keys($themes[$theme->name]->base_themes); + $theme_keys[] = $theme->name; } else { $theme_keys = array($theme->name);