349a350,362
> function upload_rss($op, &$xml, $node = NULL) {
>   if ($op == 'item' && $node != $NULL) {
>         foreach ($node->files as $file) {
>           if ($file->list) {
>              $item['.ATTRIBUTES'] = array('url' => 
>                ($file->fid ? file_create_url($file->filepath) : url(file_create_filename($file->filename, file_create_path()))) );
>              $xml['enclosure'][] = $item;
>               // format_size($file->filesize)
>           }
>         }
>   }
> }
> 
