--- privatemsg_attachments/privatemsg_attachments.module	2010-04-20 05:02:25.000000000 -0400
+++ privatemsg_attachments/privatemsg_attachments.module.new	2010-04-20 05:06:27.000000000 -0400
@@ -48,9 +48,20 @@ function privatemsg_attachments_form_pri
 
     // Note: pass by reference
     if (!file_check_directory($path, FILE_CREATE_DIRECTORY) || !file_check_directory($temp, FILE_CREATE_DIRECTORY)) {
-      $form['privatemsg']['attachments']['#description'] =  t('File attachments are disabled. The file directories have not been properly configured.');
-      if (user_access('administer site configuration')) {
-        $form['privatemsg']['attachments']['#description'] .= ' '. t('Please visit the <a href="@admin-file-system">file system configuration page</a>.', array('@admin-file-system' => url('admin/settings/file-system')));
+ 
+// Reword the error message to explain that the Private Message file attachment settings may be
+// configured incorrectly instead of referring to Drupal's file system.
+
+
+ $form['privatemsg']['attachments']['#description'] =  t('File attachments are disabled. The file attachment fieldset in the module\'s administration settings may not have been properly configured.');
+
+// Lets direct the user to the correct administration area instead of to Drupal's main file
+// atachment configuration setting.
+
+
+
+ if (user_access('administer site configuration')) {
+        $form['privatemsg']['attachments']['#description'] .= ' '. t('Please visit the <a href="@admin-file-system">Private Messages module configuration page</a>.', array('@admin-file-system' => url('admin/settings/messages')));
       }
       else {
         $form['privatemsg']['attachments']['#description'] .= ' '. t('Please contact the site administrator.');
@@ -85,7 +96,12 @@ function privatemsg_attachments_form_pri
     '#title' => t('Privatemsg attachments directory'),
     '#type'  => 'textfield',
     '#default_value' => variable_get('privatemsg_attachments_upload_dir', ''),
-    '#description' => t('Relative path, based on the file system path, where private message attachments will be stored.'),
+    
+	// Let's explain the path a bit more clearly as we are talking about Drupal's
+	// file-attachment path.
+	
+	
+	'#description' => t('Relative path, based on Drupal\'s configured file attachments path, where private message attachments will be stored.'),
     '#weight' => -4,
   );
 
