projects
/
tweeper.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
c754e06
)
Cosmetics: sort supported_content_types, remove unneeded spaces
author
Antonio Ospite <ospite@studenti.unina.it>
Sun, 11 Aug 2013 18:57:02 +0000
(20:57 +0200)
committer
Antonio Ospite <ospite@studenti.unina.it>
Sun, 11 Aug 2013 23:21:44 +0000
(
01:21
+0200)
tweeper.php
patch
|
blob
|
history
diff --git
a/tweeper.php
b/tweeper.php
index
e9345cc
..
74e9e2f
100644
(file)
--- a/
tweeper.php
+++ b/
tweeper.php
@@
-55,19
+55,19
@@
function get_url_info($url)
function generate_enclosure($url)
{
$supported_content_types = array(
function generate_enclosure($url)
{
$supported_content_types = array(
- "video/avi",
- "image/gif",
- "image/jpeg",
- "audio/x-midi",
- "audio/mpeg",
- "video/mpeg",
- "audio/vorbis",
"application/ogg",
"application/ogg",
- "audio/webm",
"audio/aac",
"audio/mp4",
"audio/aac",
"audio/mp4",
+ "audio/mpeg",
+ "audio/vorbis",
"audio/wav",
"audio/wav",
+ "audio/webm",
+ "audio/x-midi",
+ "image/gif",
+ "image/jpeg",
+ "video/avi",
"video/mp4",
"video/mp4",
+ "video/mpeg",
"video/ogg",
);
"video/ogg",
);
@@
-81,9
+81,9
@@
function generate_enclosure($url)
$dom = new DomDocument();
$enc = $dom->createElement('enclosure');
$dom = new DomDocument();
$enc = $dom->createElement('enclosure');
- $enc->setAttribute(
'url', $url_info['url']);
- $enc->setAttribute(
'length', $url_info['download_content_length']);
- $enc->setAttribute(
'type', $url_info['content_type']);
+ $enc->setAttribute('url', $url_info['url']);
+ $enc->setAttribute('length', $url_info['download_content_length']);
+ $enc->setAttribute('type', $url_info['content_type']);
$dom->appendChild($enc);
$dom->appendChild($enc);