From: Craig Andrews Date: Wed, 2 Sep 2009 03:02:03 +0000 (-0400) Subject: Check "Files" of type 'application/xhtml+xml' for oEmbed in addition to just text... X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=efcfd209ef737f4dbe99401df282e7a341176ea7;p=quix0rs-gnu-social.git Check "Files" of type 'application/xhtml+xml' for oEmbed in addition to just text/html --- diff --git a/classes/File.php b/classes/File.php index f4d0a3a488..96a4de6e8e 100644 --- a/classes/File.php +++ b/classes/File.php @@ -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); }