From 60320f8850ab1891efcef1e95cbf9d169717338b Mon Sep 17 00:00:00 2001
From: root <root@web.test.local>
Date: Fri, 19 Apr 2013 11:34:39 +0200
Subject: [PATCH] fix_path

---
 nginx_accel_redirect.module |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/nginx_accel_redirect.module b/nginx_accel_redirect.module
index 2934e71..f8a0269 100644
--- a/nginx_accel_redirect.module
+++ b/nginx_accel_redirect.module
@@ -22,17 +22,17 @@ function nginx_accel_redirect_help($path, $arg) {
     case 'admin/help#nginx_accel_redirect':
       $output = t('<p>The Nginx Accel Redirect Module implements the ' .
                   l('XSendfile', 'http://wiki.nginx.org/XSendfile', array('attributes' => array('rel' => 'external'))) . ' facility in Nginx with Drupal.') . '</p>';
-      $output .= '<p>' . t('You have to specify a private path at the' . ' ' . l(t('file settings page'), 'admin/settings/file-system') . ' and then enable the X-Accel-Redirect transfer at the module ' . l(t('settings page'), 'admin/settings/file-system/nginx-accel-redirect')) . '.</p>';
+      $output .= '<p>' . t('You have to specify a private path at the' . ' ' . l(t('file settings page'), 'admin/config/media/file-system') . ' and then enable the X-Accel-Redirect transfer at the module ' . l(t('settings page'), 'admin/config/media/file-system/nginx-accel-redirect')) . '.</p>';
       return $output;
       break;
-    case 'admin/settings/file-system':
+    case 'admin/config/media/file-system':
       $output = '';
       if (module_exists('help')) {
-        $output = '<p>' . t('If using a private file system please enable fast file transfers using X-Accel-Redirect at the module ') . l(t('settings page'), 'admin/settings/file-system/nginx-accel-redirect') . '.</p>';
+        $output = '<p>' . t('If using a private file system please enable fast file transfers using X-Accel-Redirect at the module ') . l(t('settings page'), 'admin/config/media/file-system/nginx-accel-redirect') . '.</p>';
       }
       return $output;
       break;
-    case 'admin/settings/file-system/nginx-accel-redirect':
+    case 'admin/config/media/file-system/nginx-accel-redirect':
       $output = '';
       if (module_exists('help')) {
         $output = '<p>' . t('To use Nginx X-Accel-Redirect for fast private file transfer enable it below.') . '</p>';
@@ -229,4 +229,4 @@ function nginx_accel_redirect_get_nginx_config($advanced = FALSE) {
   $output .= "   #log_not_found off;\n}\n\n";
 
   return $output;
-} // nginx_accel_redirect_get_nginx_config
\ No newline at end of file
+} // nginx_accel_redirect_get_nginx_config
-- 
1.7.2.5

