http://trac.tiddlywiki.org/changeset/12278
MartinBudden
2010-07-20 03:12:44 -0700 (Tue, 20 Jul 2010)
52
Ticket #1171
Tweak for convertUnicodeToFileFormat()
---------------
U Trunk/core/js/FileSystem.js
---------------
Modified: Trunk/core/js/FileSystem.js
===================================================================
--- Trunk/core/js/FileSystem.js 2010-07-20 09:45:22 UTC (rev 12277)
+++ Trunk/core/js/FileSystem.js 2010-07-20 10:12:44 UTC (rev 12278)
@@ -62,7 +62,7 @@
//# this should be UTF8, unless the browser does not support saving non-ASCII
characters
function convertUnicodeToFileFormat(s)
{
- return config.browser.isOpera || !window.netscape ?
convertUnicodeToHtmlEntities(s) : mozConvertUnicodeToUTF8(s);
+ return config.browser.isOpera || !window.netscape ?
(config.browser.isIE ? convertUnicodeToHtmlEntities(s) : s) :
mozConvertUnicodeToUTF8(s);
}
function convertUnicodeToHtmlEntities(s)
--
You received this message because you are subscribed to the Google Groups
"TiddlyWikiDev" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/tiddlywikidev?hl=en.