summaryrefslogtreecommitdiff
path: root/lib
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 /lib
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 'lib')
-rw-r--r--lib/rssaction.php2
-rw-r--r--lib/twitterapi.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/rssaction.php b/lib/rssaction.php
index 183c09f47..ffa1f9e99 100644
--- a/lib/rssaction.php
+++ b/lib/rssaction.php
@@ -237,7 +237,7 @@ class Rss10Action extends Action
$attachments = $notice->attachments();
if($attachments){
foreach($attachments as $attachment){
- if (isset($attachment->filename)) {
+ if ($attachment->isEnclosure()) {
// DO NOT move xmlns declaration to root element. Making it
// the default namespace here improves compatibility with
// real-world feed readers.
diff --git a/lib/twitterapi.php b/lib/twitterapi.php
index ce188e00d..655b6c777 100644
--- a/lib/twitterapi.php
+++ b/lib/twitterapi.php
@@ -218,7 +218,7 @@ class TwitterapiAction extends Action
if($attachments){
$entry['enclosures']=array();
foreach($attachments as $attachment){
- if (isset($attachment->filename)) {
+ if ($attachment->isEnclosure()) {
$enclosure=array();
$enclosure['url']=$attachment->url;
$enclosure['mimetype']=$attachment->mimetype;