cvs diff: Diffing .
Index: emaudio.theme.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/emfield/contrib/emaudio/Attic/emaudio.theme.inc,v
retrieving revision 1.1.2.4
diff -u -r1.1.2.4 emaudio.theme.inc
--- emaudio.theme.inc   20 Nov 2008 03:49:34 -0000      1.1.2.4
+++ emaudio.theme.inc   10 Dec 2008 20:33:01 -0000
@@ -102,7 +102,7 @@
     $width = isset($options['width']) ? $options['width'] : (isset($field['widget']['audio_width']) ? $field['widget']['audio_width'] : variable_get('emaudio_default_audio_width', EMAUDIO_DEFAULT_PREVIEW_WIDTH));
     $height = isset($options['height']) ? $options['height'] : (isset($field['widget']['audio_height']) ? $field['widget']['audio_height'] : variable_get('emaudio_default_audio_height', EMAUDIO_DEFAULT_PREVIEW_HEIGHT));
     $autoplay = isset($options['autoplay']) ? $options['autoplay'] : $field['widget']['audio_autoplay'];
-    $output = module_invoke('emfield', 'include_invoke', 'emaudio', $item['provider'], 'preview', $embed, $width, $height, $field, $item, $autoplay, $options);
+    $output = module_invoke('emfield', 'include_invoke', 'emaudio', $item['provider'], 'preview', $embed, $width, $height, $field, $item, $node, $autoplay, $options);
   }
 
   return $output;
cvs diff: Diffing providers
Index: providers/odeo.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/emfield/contrib/emaudio/providers/odeo.inc,v
retrieving revision 1.1.4.6
diff -u -r1.1.4.6 odeo.inc
--- providers/odeo.inc  9 Dec 2008 22:13:49 -0000       1.1.4.6
+++ providers/odeo.inc  10 Dec 2008 20:33:02 -0000
@@ -137,7 +137,7 @@
  * @return
  *   The html of the embedded audio.
  */
-function emaudio_odeo_audio($embed, $width, $height, $field, $item, $autoplay) {
+function emaudio_odeo_audio($embed, $width, $height, $field, $item, &$node, $autoplay) {
   $output = theme('emaudio_odeo_flash', $embed, $width, $height, $autoplay);
 
   return $output;
@@ -161,7 +161,7 @@
  * @return
  *   The html of the embedded audio.
  */
-function emaudio_odeo_preview($embed, $width, $height, $field, $item, $autoplay) {
+function emaudio_odeo_preview($embed, $width, $height, $field, $item, &$node, $autoplay) {
   $output = theme('emaudio_odeo_flash', $embed, $width, $height, $autoplay);
 
   return $output;
Index: providers/podcastalley.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/emfield/contrib/emaudio/providers/podcastalley.inc,v
retrieving revision 1.1.4.6
diff -u -r1.1.4.6 podcastalley.inc
--- providers/podcastalley.inc  9 Dec 2008 22:13:49 -0000       1.1.4.6
+++ providers/podcastalley.inc  10 Dec 2008 20:33:02 -0000
@@ -136,7 +136,7 @@
  * @return
  *   The html of the embedded audio.
  */
-function emaudio_podcastalley_audio($embed, $width, $height, $field, $item, $autoplay) {
+function emaudio_podcastalley_audio($embed, $width, $height, $field, $item, &$node, $autoplay) {
   $output = theme('emaudio_podcastalley_flash', $embed, $width, $height, $autoplay);
 
   return $output;
@@ -160,7 +160,7 @@
  * @return
  *   The html of the embedded audio.
  */
-function emaudio_podcastalley_preview($embed, $width, $height, $field, $item, $autoplay) {
+function emaudio_podcastalley_preview($embed, $width, $height, $field, $item, &$node, $autoplay) {
   $output = theme('emaudio_podcastalley_flash', $embed, $width, $height, $autoplay);
 
   return $output;
Index: providers/podomatic.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/emfield/contrib/emaudio/providers/podomatic.inc,v
retrieving revision 1.1.4.8
diff -u -r1.1.4.8 podomatic.inc
--- providers/podomatic.inc     9 Dec 2008 22:13:49 -0000       1.1.4.8
+++ providers/podomatic.inc     10 Dec 2008 20:33:03 -0000
@@ -139,7 +139,7 @@
  *  @return
  *    the html of the embedded audio
  */
-function emaudio_podomatic_audio($embed, $width, $height, $field, $item, $autoplay) {
+function emaudio_podomatic_audio($embed, $width, $height, $field, $item, &$node, $autoplay) {
   $output = theme('emaudio_podomatic_flash', $embed, $width, $height, $autoplay);
   return $output;
 }
@@ -160,7 +160,7 @@
  *  @return
  *    the html of the embedded audio
  */
-function emaudio_podomatic_preview($embed, $width, $height, $field, $item, $autoplay) {
+function emaudio_podomatic_preview($embed, $width, $height, $field, $item, &$node, $autoplay) {
   $output = theme('emaudio_podomatic_flash', $embed, $width, $height, $autoplay);
   return $output;
 }