diff --git a/core/modules/config/config.module b/core/modules/config/config.module index 76deec4..dcba3df 100644 --- a/core/modules/config/config.module +++ b/core/modules/config/config.module @@ -18,9 +18,11 @@ function config_help($path, $arg) { )) . '

'; return $output; - case 'admin/config/development/configuration/sync': + case 'admin/config/development/configuration': $output = ''; - $output .= '

' . t('Import configuration that is placed in your staging directory. All changes, deletions, renames, and additions are listed below.') . '

'; + $output .= '

' . t('The list below will show all the changes between the config files in the active and staging folder within the config storage. You can review each change before importing and setting the changes active.
For more information, see the online handbook entry for Synchronizing configuration', array( + '!url' => 'http://drupal.org/node/2182101', + )) . '

'; return $output; } }