Index: mm_flvtool2.inc =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/mm_flvtool2/mm_flvtool2.inc,v retrieving revision 1.2 diff -u -p -r1.2 mm_flvtool2.inc --- mm_flvtool2.inc 7 Feb 2008 01:18:49 -0000 1.2 +++ mm_flvtool2.inc 7 Feb 2008 22:29:16 -0000 @@ -8,7 +8,7 @@ * @param $file_path is the path to the file * @return is the parsed xml from the command, false if there is an error */ -function mm_flvtool2_get_tags($file_path) { +function _flvtool2_get_tags($file_path) { // get tags $output = mm_flvtool2_run_command($file_path, 'Px'); // check output @@ -93,8 +93,9 @@ function mm_flvtool2_run_command($file_p */ function mm_flvtool2_get_tags($filepath, $param) { static $file_parameters; - if (! $file_parmeters[$filepath]) { - $file_parameters[$filepath] = mm_flvtool2_get_tags($file_path) + + if (! $file_parameters[$filepath]) { + $file_parameters[$filepath] = mm_flvtool2_get_tags($filepath); } // get the index value so we can find it in the values list $index_value = $file_parameters[$filepath]['index'][$param][0];