detect xml and json as text
authorChristian Weiske <christian.weiske@netresearch.de>
Wed, 4 Sep 2013 13:51:58 +0000 (15:51 +0200)
committerChristian Weiske <christian.weiske@netresearch.de>
Wed, 4 Sep 2013 13:51:58 +0000 (15:51 +0200)
src/phorkie/File.php

index 63d23e6d69878b9a304bb3344075cc1edcef91cf..dc90d9bc096747ef93ddfb5f8c52a1a45dd3c774 100644 (file)
@@ -165,7 +165,9 @@ class File
 
         $type = $GLOBALS['phorkie']['languages'][$ext]['mime'];
         return substr($type, 0, 5) === 'text/'
-            || $type == 'application/javascript';
+            || $type == 'application/javascript'
+            || substr($type, -4) == '+xml'
+            || substr($type, -5) == '+json';
     }
 }