diff options
author | Silvio <silvio@devlet.com.br> | 2011-07-12 10:26:40 -0300 |
---|---|---|
committer | Silvio <silvio@devlet.com.br> | 2011-07-12 10:26:40 -0300 |
commit | 84a089eb09ab21d5062faa3b4021f95da930caaf (patch) | |
tree | 04e6efe1d61c0dce3f5c526ab184e89588d7a878 /includes | |
parent | d598b738b366190db350b95cebb1e1cf0e1c54c6 (diff) | |
parent | b2eb0df792e7724538c4afeb7d8929a241a03773 (diff) | |
download | video-84a089eb09ab21d5062faa3b4021f95da930caaf.tar.gz video-84a089eb09ab21d5062faa3b4021f95da930caaf.tar.bz2 |
Merge branch '7.x-1.x' of http://git.drupal.org/project/video into 7.x-1.x
Conflicts:
transcoders/video_ffmpeg_php.inc
Diffstat (limited to 'includes')
-rw-r--r-- | includes/video_helper.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/video_helper.inc b/includes/video_helper.inc index e6627ca..8ba1840 100644 --- a/includes/video_helper.inc +++ b/includes/video_helper.inc @@ -88,9 +88,9 @@ class video_helper { // Check the checkbox to use default thumbnail on node $thumbnail->filepath = $default_thumbnail->uri; } - elseif (isset($variables['item']['thumbanail']) ? TRUE : FALSE) { + elseif (isset($variables['item']['thumbnail']) ? TRUE : FALSE) { // actual video thumbnails is present - $thumbnail_load = file_load($variables['item']['thumbanail']); + $thumbnail_load = file_load($variables['item']['thumbnail']); $thumbnail->filepath = $thumbnail_load->uri; } else { |