]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Check "Files" of type 'application/xhtml+xml' for oEmbed in addition to just text...
authorCraig Andrews <candrews@integralblue.com>
Wed, 2 Sep 2009 03:02:03 +0000 (23:02 -0400)
committerCraig Andrews <candrews@integralblue.com>
Wed, 2 Sep 2009 03:18:39 +0000 (23:18 -0400)
classes/File.php

index f4d0a3a4881c0c365575ff79516d04da781c8f13..96a4de6e8e03b2070d0e2df4f15eb1db52d277c4 100644 (file)
@@ -78,7 +78,7 @@ class File extends Memcached_DataObject
         $file_id = $x->insert();
 
         if (isset($redir_data['type'])
-            && ('text/html' === substr($redir_data['type'], 0, 9))
+            && (('text/html' === substr($redir_data['type'], 0, 9) || 'application/xhtml+xml' === substr($redir_data['type'], 0, 21)))
             && ($oembed_data = File_oembed::_getOembed($given_url))) {
                 File_oembed::saveNew($oembed_data, $file_id);
         }