? signup_untimed.patch
Index: signup_event_5.x-1.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/signup/signup_event_5.x-1.inc,v
retrieving revision 1.4
diff -u -p -r1.4 signup_event_5.x-1.inc
--- signup_event_5.x-1.inc	7 Feb 2008 02:35:21 -0000	1.4
+++ signup_event_5.x-1.inc	28 Jul 2008 07:11:04 -0000
@@ -81,7 +81,7 @@ function signup_extra_tokens() {
 function signup_format_date($node) {
   include_once(drupal_get_path('module', 'event') .'/event_timezones.inc');
   $offset = intval(variable_get('date_default_timezone', 0));
-  return $node->event_start ? _event_date(variable_get('signup_date_string', 'D, M jS, g:i A'), $node->event_start, $offset) : t('[Untimed]');
+  return $node->event_start ? _event_date(variable_get('signup_date_string', 'D, M jS, g:i A'), $node->event_start, $offset) : '';
 }
 
 /**
@@ -102,7 +102,7 @@ function theme_signup_event_dates($node)
     }
   }
   else {
-    $output .= '<div class="signup-user-schedule"><div class="'. $node->type .'signup-untimed">'. t('[Untimed]') .'</div></div>';
+    $output .= '';
   }
   return $output;
 }
Index: signup_event_5.x-2.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/signup/signup_event_5.x-2.inc,v
retrieving revision 1.3
diff -u -p -r1.3 signup_event_5.x-2.inc
--- signup_event_5.x-2.inc	26 Dec 2007 17:34:04 -0000	1.3
+++ signup_event_5.x-2.inc	28 Jul 2008 07:11:04 -0000
@@ -82,5 +82,5 @@ function signup_extra_tokens() {
 }
 
 function signup_format_date($node) {
-  return $node->event['start'] ? event_format_date(event_explode_date($node->event['start']), 'custom', variable_get('signup_date_string', 'D, M jS, g:i A')) : t('[Untimed]');
-}
\ No newline at end of file
+  return $node->event['start'] ? event_format_date(event_explode_date($node->event['start']), 'custom', variable_get('signup_date_string', 'D, M jS, g:i A')) : '';
+}
Index: signup_event_none.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/signup/signup_event_none.inc,v
retrieving revision 1.1
diff -u -p -r1.1 signup_event_none.inc
--- signup_event_none.inc	31 Jul 2007 00:08:31 -0000	1.1
+++ signup_event_none.inc	28 Jul 2008 07:11:04 -0000
@@ -24,5 +24,5 @@ function _signup_event_completed($node) 
 }
 
 function signup_format_date($node) {
-  return t('[Untimed]');
+  return '';
 }
