Avoid marking files as attachments that are not locally uploaded, unless they're really oembedable. HTML-y things now excluded properly.

This commit is contained in:
Brion Vibber
2010-11-08 13:27:54 -08:00
parent 719b480eaa
commit 883f7a6c0b
2 changed files with 4 additions and 1 deletions

View File

@@ -877,7 +877,7 @@ function common_linkify($url) {
}
if (!empty($f)) {
if ($f->getEnclosure() || File_oembed::staticGet('file_id',$f->id)) {
if ($f->getEnclosure()) {
$is_attachment = true;
$attachment_id = $f->id;