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:
Francis Lachapelle
2009-10-23 19:57:53 +00:00
parent c8e3e69ae2
commit fa43f053f7
2 changed files with 7 additions and 2 deletions
+4
View File
@@ -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.
+3 -2
View File
@@ -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;