From 0f6cb6bff8ce0cdf3c0be9b0a5c787beb6226a4e Mon Sep 17 00:00:00 2001
From: Travis Carden <TravisCarden@236758.no-reply.drupal.org>
Date: Fri, 6 Jan 2012 08:57:59 -0600
Subject: [PATCH] Fixed "files cannot be writing" error message.

---
 features_tools.module |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/features_tools.module b/features_tools.module
index 8649ba2..374ab94 100644
--- a/features_tools.module
+++ b/features_tools.module
@@ -197,7 +197,7 @@ function features_tools_form_features_export_form_safe_submit($form, &$form_stat
       $error = TRUE;
     }
     if ($error) {
-      drupal_set_message(t('One or more files cannot be writing to the file system this is probably a permission issue. @see http://drupal.org/project/features_tools for more info'));
+      drupal_set_message(t('One or more files could not be written to the file system. This is probably a permission issue. See !link for more information.', array('!link' => l(t('the Features Tools module page'), 'http://drupal.org/project/ftools'))), 'error');
       return;
     }
     else {
@@ -272,7 +272,7 @@ function features_tools_export_build_form_submit($form, &$form_state) {
       }
     }
     if ($error) {
-      drupal_set_message(t('One or more files cannot be writing to the file system this is probably a permission issue. @see http://drupal.org/project/features_tools for more info'));
+      drupal_set_message(t('One or more files could not be written to the file system. This is probably a permission issue. See !link for more information.', array('!link' => l(t('the Features Tools module page'), 'http://drupal.org/project/ftools'))), 'error');
     }
     else {
       drupal_set_message(t('The feature was successfully created.'));
-- 
1.7.4.1

