Index: getid3.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/getid3/getid3.module,v
retrieving revision 1.4
diff -u -r1.4 getid3.module
--- getid3.module	11 Sep 2007 19:08:42 -0000	1.4
+++ getid3.module	17 Feb 2008 09:47:16 -0000
@@ -36,7 +36,7 @@
  *   Boolean indicating if the library was loaded 
  */
 function getid3_load($display_warning = TRUE) {
-  @(include_once(getid3_get_path() .'/getid3/getid3.php')) or _getid3_library_not_found($display_warning);
+  @(include_once(getid3_get_path() .'/getid3.php')) or _getid3_library_not_found($display_warning);
   $version = GETID3_VERSION;
   return !empty($version);
 }
@@ -125,7 +125,7 @@
  */
 function _getid3_admin_settings_check_path($form_element) {
   $path = $form_element['#value'];
-  if (!is_dir($path) || !file_exists($path .'/getid3/getid3.php')) {
+  if (!is_dir($path) || !file_exists($path .'/getid3.php')) {
     form_set_error($form_element['#parents'][0], t('The <a href="@getid3" target="_blank">getID3 PHP library</a> could not be found in %path.', array('@url' => 'http://www.getid3.org', '%path' => $path)));
   }
   else {
