#BUGFIX by stefan expecco_2_11_1
authorStefan Vogel <sv@exept.de>
Mon, 13 Mar 2017 09:54:33 +0100
changeset 3941 dd9237d3a727
parent 3940 d5fb7f7790eb
child 3942 521552945b3a
#BUGFIX by stefan class: MIMETypes application/xml -> #isXmlType
MIMETypes.st
--- a/MIMETypes.st	Fri Mar 10 00:23:00 2017 +0100
+++ b/MIMETypes.st	Mon Mar 13 09:54:33 2017 +0100
@@ -1652,7 +1652,9 @@
 isXmlType
     "return true, if I represent the xml text type"
 
-    ^ (self = 'text/xml')
+    ^ self = 'text/xml' or:[self = 'application/xml']
+
+    "Modified (format): / 13-03-2017 / 09:41:52 / stefan"
 !
 
 suffix