http://trac.tiddlywiki.org/changeset/9547
JeremyRuston
2009-04-21 11:17:39 +0000 (Tue, 21 Apr 2009)
78
[fileplugin] Fixed problem with encoding content for Internet Explorer (#1036)
---------------
U Trunk/core/js/FileSystem.js
---------------
Modified: Trunk/core/js/FileSystem.js
===================================================================
--- Trunk/core/js/FileSystem.js 2009-04-21 11:17:04 UTC (rev 9546)
+++ Trunk/core/js/FileSystem.js 2009-04-21 11:17:39 UTC (rev 9547)
@@ -62,12 +62,10 @@
//# this should be UTF8, unless the browser does not support saving non-ASCII
characters
function convertUnicodeToFileFormat(s)
{
- if(config.browser.isMozilla)
+ if(!config.browser.isIE)
return s;
- else if(!config.browser.isIE)
- return convertUnicodeToHtmlEntities(s);
else
- return manualConvertUnicodeToUTF8(s);
+ return convertUnicodeToHtmlEntities(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
-~----------~----~----~----~------~----~------~--~---