From 30ddc12b8e269a4b3168a552f5c810e46f200ea3 Mon Sep 17 00:00:00 2001 From: skeeter Date: Sun, 11 Mar 2001 04:17:21 +0000 Subject: [PATCH] small changes to the email subject line --- calendar/inc/class.calendar__.inc.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/calendar/inc/class.calendar__.inc.php b/calendar/inc/class.calendar__.inc.php index 4e16bec006..3dfa5da7a6 100755 --- a/calendar/inc/class.calendar__.inc.php +++ b/calendar/inc/class.calendar__.inc.php @@ -66,17 +66,17 @@ class calendar__ switch($msg_type) { case MSG_DELETED: - $action = 'Deleted '; + $action = 'Deleted'; $event_id = $old_event->id; $msgtype = '"calendar";'; break; case MSG_MODIFIED: - $action = 'Modified '; + $action = 'Modified'; $event_id = $old_event->id; $msgtype = '"calendar"; Version="'.$phpgw_info['server']['versions']['calendar'].'"; Id="'.$new_event->id.'"'; break; case MSG_ADDED: - $action = 'Added '; + $action = 'Added'; $event_id = $old_event->id; $msgtype = '"calendar"; Version="'.$phpgw_info['server']['versions']['calendar'].'"; Id="'.$new_event->id.'"'; break;