Index: getid3.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/getid3/getid3.install,v
retrieving revision 1.6
diff -u -p -r1.6 getid3.install
--- getid3.install	25 Sep 2008 23:19:55 -0000	1.6
+++ getid3.install	26 Nov 2009 01:20:12 -0000
@@ -16,13 +16,13 @@ function getid3_requirements($phase) {
       $requirements['getid3']['value'] = check_plain(getid3_get_version());
       $getid3_demos_path = getid3_get_path() .'/../demos';
       if (file_exists($getid3_demos_path)) {
-        $requirements['getid3']['description'] = $t("Your getID3 library is insecure! The demos distributed with getID3 contains code which creates a huge security hole. Remove the demos directory (%path) from beneth Drupal's directory.", array('%path' => realpath($getid3_demos_path)));
+        $requirements['getid3']['description'] = $t("Your getID3 library is insecure! The demos distributed with getID3 contains code which creates a huge security hole. Remove the demos directory (%path) from beneath Drupal's directory.", array('%path' => realpath($getid3_demos_path)));
         $requirements['getid3']['severity'] = REQUIREMENT_ERROR; 
       }
     }
     else {
       $requirements['getid3']['value'] = $t('Not found or wrong version');
-      $requirements['getid3']['description'] = $t('You must install <a href="@getid3">getID3()</a> to %getid3dir, or <a href="@getid3settings">configure its installation path</a>.', array('@getid3' => 'http://www.getid3.org', '%getid3dir' => drupal_get_path('module', 'getid3') .'/getid3', '@getid3settings' => url('admin/settings/getid3')));
+      $requirements['getid3']['description'] = $t('You must install <a href="@getid3">getID3()</a> to %getid3dir, or <a href="@getid3settings">configure its installation path</a>.', array('@getid3' => 'http://www.getid3.org', '%getid3dir' => 'sites/all/libraries/getid3', '@getid3settings' => url('admin/settings/getid3')));
       $requirements['getid3']['severity'] = REQUIREMENT_ERROR; 
     }
   }
Index: getid3.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/getid3/getid3.module,v
retrieving revision 1.10.2.2
diff -u -p -r1.10.2.2 getid3.module
--- getid3.module	26 Nov 2009 00:21:02 -0000	1.10.2.2
+++ getid3.module	26 Nov 2009 01:20:12 -0000
@@ -100,7 +100,7 @@ function getid3_admin_settings_form() {
     '#description' => t('The location where getID3() is installed. Relative paths are from the Drupal root directory.'),
     '#after_build' => array('_getid3_admin_settings_check_path'),
   );
-  if ($version = getid3_get_version(FALSE)) {
+  if ($version = getid3_get_version()) {
     $form['getid3_version'] = array(
       '#type' => 'item',
       '#title' => t('Version'),
@@ -113,7 +113,7 @@ function getid3_admin_settings_form() {
     // so we recommend that the user delete it.
     $getid3_demos_path = getid3_get_path() .'/../demos';
     if (file_exists($getid3_demos_path)) {
-      drupal_set_message(t("Your getID3 library is insecure! The demos distributed with getID3 contains code which creates a huge security hole. Remove the demos directory (%path) from beneth Drupal's directory.", array('%path' => realpath($getid3_demos_path))), 'error');
+      drupal_set_message(t("Your getID3 library is insecure! The demos distributed with getID3 contains code which creates a huge security hole. Remove the demos directory (%path) from beneath Drupal's directory.", array('%path' => realpath($getid3_demos_path))), 'error');
     }
   }
   $form['getid3_show_warnings'] = array(
