Index: domain_nav/domain_nav.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/domain/domain_nav/domain_nav.module,v
retrieving revision 1.18.2.2
diff -u -p -r1.18.2.2 domain_nav.module
--- domain_nav/domain_nav.module	22 Sep 2010 20:53:39 -0000	1.18.2.2
+++ domain_nav/domain_nav.module	13 Feb 2011 00:17:50 -0000
@@ -226,15 +226,15 @@ function domain_nav_render($paths = NULL
 function theme_domain_nav_default($options) {
   global $_domain;
   $current = $options[$_domain['domain_id']];
-  $output = '<form class="domain-list" action="">';
+  $output = '<form class="domain-list" action=""><div class="domain-pointless-validator-class">';
   $output .= '<select onchange="if (this.value) location.href=this.value;">';
   $output .= '<option value="'. $current['path'] .'">'. t('Jump to...') .'</option>';
   foreach ($options as $key => $value) {
-    (isset($value['active'])) ? $selected = ' selected' : $selected = '';
+    (isset($value['active'])) ? $selected = ' selected="selected"' : $selected = '';
     $output .= '<option value="'. $value['path'] .'"'. $selected .'>'. filter_xss_admin($value['sitename']) .'</option>';
   }
   $output .= '</select>';
-  $output .= '</form>';
+  $output .= '</div></form>';
   return $output;
 }
 
