? emfield-934178.patch
Index: contrib/emthumb/emthumb.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/emfield/contrib/emthumb/emthumb.module,v
retrieving revision 1.7.2.36.2.7
diff -u -p -r1.7.2.36.2.7 emthumb.module
--- contrib/emthumb/emthumb.module	19 Jul 2010 16:06:40 -0000	1.7.2.36.2.7
+++ contrib/emthumb/emthumb.module	8 Oct 2010 00:26:57 -0000
@@ -519,7 +519,7 @@ function _emthumb_file_load($fid = NULL)
  *    The path to the custom thumbnail file.
  */
 function emthumb_thumbnail_path($item) {
-  if (is_array($item['data']['emthumb']) && $item['data']['emthumb']['filepath']) {
+  if (is_array($item['data']['emthumb']) && !empty($item['data']['emthumb']['filepath'])) {
     return file_create_path($item['data']['emthumb']['filepath']);
   }
 }
Index: contrib/emvideo/emvideo.theme.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/emfield/contrib/emvideo/Attic/emvideo.theme.inc,v
retrieving revision 1.1.2.38.2.9
diff -u -p -r1.1.2.38.2.9 emvideo.theme.inc
--- contrib/emvideo/emvideo.theme.inc	5 Oct 2010 20:01:03 -0000	1.1.2.38.2.9
+++ contrib/emvideo/emvideo.theme.inc	8 Oct 2010 00:26:57 -0000
@@ -132,7 +132,7 @@ function theme_emvideo_video_thumbnail($
   $image_alt = isset($options['image_alt']) ? $options['image_alt'] : (isset($item['description']) ? $item['description'] : $link_title);
 
   if (isset($thumbnail_url)) {
-    if ($options['absolute']) {
+    if (!empty($options['absolute'])) {
       $thumbnail_url = url($thumbnail_url, array('absolute' => $options['absolute']));
     }
     if (isset($options['return_url'])) {
