Monotone-Parent: e38c570559610854b85c2c517053417779a76964
Monotone-Revision: 9d44b483787d6b5bf34a75581975d592ab901570

Monotone-Author: ludovic@Sophos.ca
Monotone-Date: 2011-11-17T12:43:51
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Ludovic Marcotte 2011-11-17 12:43:51 +00:00
parent 53e125bd7a
commit d1cd50c0e3
1 changed files with 2 additions and 2 deletions

View File

@ -1986,7 +1986,7 @@ static NSArray *childRecordFields = nil;
[r appendFormat: @"<D:response><D:href>"];
[r appendString: baseURL];
[r appendString: [object objectForKey: @"c_name"]];
[r appendString: [[object objectForKey: @"c_name"] stringByEscapingURL]];
[r appendString: @"</D:href>"];
// NSLog (@"(appendPropstats...): %@", [NSDate date]);
@ -2032,7 +2032,7 @@ static NSArray *childRecordFields = nil;
for (count = 0; count < max; count++)
{
element = [refs objectAtIndex: count];
currentURL = [[element firstChild] nodeValue];
currentURL = [[[element firstChild] nodeValue] stringByUnescapingURL];
[urls addObject: currentURL];
}