diff options
author | Fabio Varesano <fax8@13637.no-reply.drupal.org> | 2006-06-19 21:00:17 +0000 |
---|---|---|
committer | Fabio Varesano <fax8@13637.no-reply.drupal.org> | 2006-06-19 21:00:17 +0000 |
commit | 512d567e3b66002127eb4fb96040d7979050e97b (patch) | |
tree | 9d6965623c8ae036bbdd669f09dae097aa0cdfda | |
parent | 107e6f3bbc6963173e04b8350d4401ccb314e4fd (diff) | |
download | video-512d567e3b66002127eb4fb96040d7979050e97b.tar.gz video-512d567e3b66002127eb4fb96040d7979050e97b.tar.bz2 |
Oops... Little error on rss generated code
-rw-r--r-- | video.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/video.module b/video.module index 2b7722f..1e687d4 100644 --- a/video.module +++ b/video.module @@ -348,7 +348,7 @@ function video_nodeapi($node, $op, $arg) { switch ($op) { case 'rss item': if ($node->type == 'video') { - $attributes['url'] = check_url(_video_get_fileurl($node->vidfile) . basename($node->vidfile)); + $attributes['url'] = _video_get_fileurl($node->vidfile); $attributes['length'] = $node->size; $mime_type = _video_get_mime_type($node); if ($mime_type) { |