? .DS_Store ? modules/system/system.admin ? sites/.DS_Store ? sites/all/modules/devel ? sites/default/files ? sites/default/settings.php ? themes/.DS_Store Index: includes/theme.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/theme.inc,v retrieving revision 1.620 diff -u -p -r1.620 theme.inc --- includes/theme.inc 21 Oct 2010 19:31:39 -0000 1.620 +++ includes/theme.inc 26 Oct 2010 02:57:01 -0000 @@ -1894,6 +1894,11 @@ function theme_feed_icon($variables) { */ function theme_html_tag($variables) { $element = $variables['element']; + + if (!isset($element['#attributes'])) { + $element['#attributes'] = array(); + } + if (!isset($element['#value'])) { return '<' . $element['#tag'] . drupal_attributes($element['#attributes']) . " />\n"; }