From e6a5eb886a88028eec7c20d32c0cc340df787adc Mon Sep 17 00:00:00 2001
From: Travis Carden <TravisCarden@236758.no-reply.drupal.org>
Date: Thu, 5 Jan 2012 14:08:42 -0600
Subject: [PATCH] Issue #1395508: 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..c88c8a4 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'))));
       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'))));
     }
     else {
       drupal_set_message(t('The feature was successfully created.'));
-- 
1.7.4.1

