Adium

Changeset 21113

Show
Ignore:
Timestamp:
09/25/2007 02:35:12 AM (1 year ago)
Author:
cbarrett
Message:

Improve comment (now with 100% more correctness).

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Source/GBChatlogHTMLConverter.m

    r21112 r21113  
    238238                                if (!empty) { 
    239239                                        NSString *unescapedMessage = [inputFileString substringWithRange:NSMakeRange(messageStart, end - messageStart - 11)];  // 10 for </message> and 1 for the index being off 
    240                                         // Need to escape these, & wasn't getting unescaped. #6850 
     240                                        // Need to unescape entities ourself. & wasn't getting unescaped for some reason. See #6850. 
    241241                                        message = (NSString *)CFXMLCreateStringByUnescapingEntities(kCFAllocatorDefault, (CFStringRef)unescapedMessage, NULL); 
    242242                                        [message autorelease];