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 diff -u -p -r1.1.2.38 emvideo.theme.inc --- contrib/emvideo/emvideo.theme.inc 21 Oct 2009 16:12:36 -0000 1.1.2.38 +++ contrib/emvideo/emvideo.theme.inc 2 Dec 2009 20:57:47 -0000 @@ -403,7 +403,7 @@ function _emvideo_seconds_to_time($secon } // Create a safe-for-output MM:SS. - $output .= check_plain(sprintf("%02d:%02d", $mm, $ss)); + $output .= check_plain(sprintf($hh ? "%02d:%02d" : "%d:%02d", $mm, $ss)); return $output; }