This patch allows you to import XHTML with an .htm
extension as well as an .html extension.
Andrew Dunbar.
--
http://linguaphile.sourceforge.net
Index: src/wp/impexp/xp/ie_imp_XHTML.cpp
===================================================================
RCS file: /cvsroot/abi/src/wp/impexp/xp/ie_imp_XHTML.cpp,v
retrieving revision 1.16
diff -u -r1.16 ie_imp_XHTML.cpp
--- src/wp/impexp/xp/ie_imp_XHTML.cpp 2001/05/07 06:49:06 1.16
+++ src/wp/impexp/xp/ie_imp_XHTML.cpp 2001/05/19 07:28:06
@@ -160,8 +160,8 @@
const char ** pszSuffixList,
IEFileType * ft)
{
- *pszDesc = "XHTML (.html)";
- *pszSuffixList = "*.html";
+ *pszDesc = "XHTML (.html, .htm)";
+ *pszSuffixList = "*.html; *.htm";
*ft = getFileType();
return true;
}