mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-21 19:35:38 +00:00
See ChangeLog
Monotone-Parent: 362796632635e06d244977f425250ed41b4cd5c2 Monotone-Revision: 0269f0e288002384896f59f89f8205c3327b32fb Monotone-Author: flachapelle@inverse.ca Monotone-Date: 2009-10-23T19:57:53 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -1,5 +1,9 @@
|
||||
2009-10-23 Francis Lachapelle <flachapelle@inverse.ca>
|
||||
|
||||
* UI/MailerUI/UIxMailMainFrame.m (-formattedMailtoString:): fixed
|
||||
the case when dealing with a NGVCardReference (from a list) with
|
||||
no FN attribute and no N attribute.
|
||||
|
||||
* UI/Scheduler/UIxComponentEditor.m (-calendarList): added proper
|
||||
verification of deletion rights on the current calendar and
|
||||
creation rights on other calendars.
|
||||
|
||||
@@ -279,7 +279,8 @@
|
||||
|
||||
// We append the contact's name
|
||||
fn = [NSMutableString stringWithString: [card fn]];
|
||||
if ([fn length] == 0)
|
||||
if ([fn length] == 0
|
||||
&& [card isKindOfClass: [NGVCard class]])
|
||||
{
|
||||
n = [card n];
|
||||
if (n)
|
||||
@@ -294,7 +295,7 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
if (fn)
|
||||
if ([fn length] > 0)
|
||||
{
|
||||
[fn appendFormat: @" %@", email];
|
||||
rc = fn;
|
||||
|
||||
Reference in New Issue
Block a user