diff --git a/UI/MailerUI/UIxMailListActions.m b/UI/MailerUI/UIxMailListActions.m index 9b6d101499..00b4f30655 100644 --- a/UI/MailerUI/UIxMailListActions.m +++ b/UI/MailerUI/UIxMailListActions.m @@ -133,7 +133,9 @@ - (NSString *) messageDate else if ([now dayOfCommonEra] - [messageDate dayOfCommonEra] < 7) { // Same week - return [[locale objectForKey: NSWeekDayNameArray] objectAtIndex: [messageDate dayOfWeek]]; + return [NSString stringWithFormat: @"%@ %@", + [[locale objectForKey: NSWeekDayNameArray] objectAtIndex: [messageDate dayOfWeek]], + [dateFormatter formattedTime: messageDate]]; } else {