Changeset 328

Show
Ignore:
Timestamp:
07/04/06 07:54:59 (2 years ago)
Author:
UdoBorkowski
Message:

Bugfix Ticket #18: "Opera problem with tiddlers >32KB"

(correctly handle "\n" (and "\s") sequences at chunk borders)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • Trunk/contributors/UdoBorkowski/Branches/2.1/core/js/TW21Loader.js

    r302 r328  
    3636        while (e && e.nodeName == "#text") 
    3737                { 
    38                 text += Tiddler.unescapeLineBreaks(e.nodeValue); 
     38                text += e.nodeValue; 
    3939                e = e.nextSibling; 
    4040                } 
     41        text = text.unescapeLineBreaks(); 
    4142        var modifier = data.getAttribute("modifier"); 
    4243        var modified = Date.convertFromYYYYMMDDHHMM(data.getAttribute("modified"));