--- stock/atom/atom.module	2007-12-05 08:55:35.000000000 -0600
+++ modified/atom/atom.module	2008-03-31 15:09:05.000000000 -0500
@@ -158,7 +158,7 @@ function _atom_print_feed($nodes, $feed_
 
     $output .= "  <entry>\n";
     $output .= '    <title>'. check_plain(strip_tags($item->title)) ."</title>\n";
-    $output .= '    <link rel="alternate" type="text/html" href="'. $link .'" />'. "\n";
+    $output .= '    <link rel="alternate" type="text/html" href="'. $link .'" />'."\n";
     $output .= '    <id>'. $link ."</id>\n";
     $output .= '    <published>'. _atom_timestamp2w3dtf($item->created) ."</published>\n";
     $output .= '    <updated>'. _atom_timestamp2w3dtf($item->changed) ."</updated>\n";
@@ -174,7 +174,7 @@ function _atom_print_feed($nodes, $feed_
     if (module_exists('taxonomy')) {
       $terms = taxonomy_node_get_terms($item->nid);
       foreach ($terms as $term) {
-        $output .= '    <category term="'. check_plain(strip_tags($term->name)) . '" />'. "\n";
+        $output .= '    <category term="'. check_plain(strip_tags($term->name)) .'" />'."\n";
       }
     }
     // Summary
@@ -193,12 +193,12 @@ function _atom_print_feed($nodes, $feed_
 
   drupal_set_header('Content-Type: application/xml');
 
-  print '<?xml version="1.0" encoding="utf-8"?>'. "\n";
-  print '<feed xmlns="http://www.w3.org/2005/Atom">'. "\n";
+  print '<?xml version="1.0" encoding="utf-8"?>'."\n";
+  print '<feed xmlns="http://www.w3.org/2005/Atom">'."\n";
   print '  <title>'. $feed_info['title'] ."</title>\n";
-  print $feed_info['subtitle'] == '' ? '' : '  <subtitle>'. $feed_info['subtitle'] . "</subtitle>\n";
-  print '  <link rel="alternate" type="text/html" href="'.$feed_info['html_url'] .'"/>'. "\n";
-  print '  <link rel="self" type="application/atom+xml" href="'. $feed_info['atom_url'] .'"/>'. "\n";
+  print $feed_info['subtitle'] == '' ? '' : '  <subtitle>'. $feed_info['subtitle'] ."</subtitle>\n";
+  print '  <link rel="alternate" type="text/html" href="'. $feed_info['html_url'] .'"/>'."\n";
+  print '  <link rel="self" type="application/atom+xml" href="'. $feed_info['atom_url'] .'"/>'."\n";
   print '  <id>'. $feed_info['atom_url'] ."</id>\n";
   print '  <updated>'. _atom_timestamp2w3dtf($last_mod) ."</updated>\n";
   print $output;
@@ -210,7 +210,7 @@ function _atom_print_feed($nodes, $feed_
  */
 function _atom_timestamp2w3dtf($timestamp) {
   $tz = date("O", $timestamp);
-  return date("Y-m-d", $timestamp) .'T'. date("H:i:s", $timestamp) . substr($tz, 0, 3) . ':' . substr($tz, 3, 2);
+  return date("Y-m-d", $timestamp) .'T'. date("H:i:s", $timestamp) . substr($tz, 0, 3) .':'. substr($tz, 3, 2);
 }
 
 /**
@@ -228,7 +228,7 @@ function atom_admin_settings() {
     '#options' => drupal_map_assoc(range(1, 30))
   );
   $form['atom_ad_location'] = array(
-    '#type'=> 'radios',
+    '#type' => 'radios',
     '#title' => t('Ad unit insertion location'),
     '#default_value' => variable_get('atom_ad_location', 'off'),
     '#options' => array(
