? .DS_Store
? stalker-coding-standards.patch
Index: stalker.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/stalker/stalker.module,v
retrieving revision 1.1
diff -u -r1.1 stalker.module
--- stalker.module	23 Oct 2009 17:06:00 -0000	1.1
+++ stalker.module	23 Oct 2009 18:12:07 -0000
@@ -58,8 +58,8 @@
  * with drupal's theme system.
  */
 function stalker_theme() {
-  return array (
-    'stalker_user' => array (
+  return array(
+    'stalker_user' => array(
       'arguments' => array('account' => NULL),
     )
   );
@@ -175,7 +175,8 @@
   // to the user on the page.
   if (!is_numeric($form_state['values']['stalker_threshold'])) {
     form_set_error('stalker_threshold', t('You must enter a number for the threshold.'));
-  } elseif ($form_state['values']['stalker_threshold'] < 1) {
+  } 
+  elseif ($form_state['values']['stalker_threshold'] < 1) {
     form_set_error('stalker_threshold', t('The stalker threshold must be greater than zero.'));
   }
 }
Index: stalker.pages.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/stalker/stalker.pages.inc,v
retrieving revision 1.1
diff -u -r1.1 stalker.pages.inc
--- stalker.pages.inc	23 Oct 2009 17:06:00 -0000	1.1
+++ stalker.pages.inc	23 Oct 2009 18:12:07 -0000
@@ -19,7 +19,7 @@
   while ($row = db_fetch_object($result)) {
     if (!variable_get('stalker_identity', FALSE)) {
       $viewer = user_load($row->stalker_uid);
-      $items[] = theme('username', $viewer)." : ".$row->view_count;
+      $items[] = theme('username', $viewer) . " : " . $row->view_count;
     }
     else {
       $items[] = variable_get('anonymous', t('Anonymous')) . ' : ' . $row->view_count;
