--- ffpc_plugin_row_podcast.inc 2009-03-17 20:39:19.000000000 -0300 +++ ffpc_plugin_row_podcast.inc.new 2009-03-17 20:40:04.000000000 -0300 @@ -84,12 +84,13 @@ class ffpc_plugin_row_podcast extends vi $getid3 = new getID3; foreach ( $this->view->field as $id => $field ) { foreach ( $item->{$field->content_field['field_name']} as $file ) { + $url_path = file_create_url($file['filepath']); $info = $getid3->analyze($file['filepath']); $extra = array(); $extra[] = array( 'key' => 'enclosure', 'attributes' => array( - 'url' => url( $file['filepath'], array('absolute'=>TRUE) ), + 'url' => url( $url_path, array('absolute'=>TRUE) ), 'length' => $file['filesize'], 'type' => $file['filemime'], ),