summaryrefslogtreecommitdiff
path: root/classes/Notice.php
diff options
context:
space:
mode:
authorZach Copley <zach@controlyourself.ca>2009-07-14 10:43:13 -0700
committerZach Copley <zach@controlyourself.ca>2009-07-14 10:43:13 -0700
commitb05b998d68ab2d4802ed4ec96abec59332ffe354 (patch)
tree13b71eaf106b269f06dc29b221418f441067995d /classes/Notice.php
parent783231c32739cf892cc23a11376c0f67810feb69 (diff)
parentc97957cf3e42b88f345408cd6d399bfe2da27f84 (diff)
Merge branch '0.8.x' of git@gitorious.org:laconica/mainline into 0.8.x
* '0.8.x' of git@gitorious.org:laconica/mainline: HTML "File"/attachments should probably not be considered enclosures. Moved the decision logic as to whether an attachment should be an enclosure to the File class
Diffstat (limited to 'classes/Notice.php')
-rw-r--r--classes/Notice.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/Notice.php b/classes/Notice.php
index fc28f3558..08125cf7b 100644
--- a/classes/Notice.php
+++ b/classes/Notice.php
@@ -1170,7 +1170,7 @@ class Notice extends Memcached_DataObject
$attachments = $this->attachments();
if($attachments){
foreach($attachments as $attachment){
- if (isset($attachment->filename)) {
+ if ($attachment->isEnclosure()) {
$attributes = array('rel'=>'enclosure','href'=>$attachment->url,'type'=>$attachment->mimetype,'length'=>$attachment->size);
if($attachment->title){
$attributes['title']=$attachment->title;