Nbsp UI fix

From CobaltFAQs

There are four locations that have typos in the HTML:

/usr/sausalito/ui/web/base/vsite/vsiteAdd.php, line 140
  $fqdn =& $factory->getCompositeFormField(array($hostfield, $domainfield), '&nbsp.&nbsp');
/usr/sausalito/ui/web/base/vsite/vsiteMod.php, line 102
  $fqdn =& $factory->getCompositeFormField(array($hostfield, $domainfield), '&nbsp.&nbsp');
/usr/sausalito/ui/web/base/wizard/onepage.php, line 52
  $fqdn =& $factory->getCompositeFormField(array($hostfield, $domainfield), '&nbsp.&nbsp');
/usr/sausalito/ui/web/base/network/ethernet.php, line 47
  $fqdn =& $factory->getCompositeFormField(array($hostfield, $domainfield), '&nbsp.&nbsp');

Change the &nbsp.&nbsp at the end of each to   

Views