From 2a123f0ac94cad2771b19ca81b9637f83cb06869 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Fri, 21 Aug 2009 14:27:47 +0000 Subject: =?UTF-8?q?-=20Patch=20#549432=20by=20Bohjan,=20G=C3=A1bor=20Hojts?= =?UTF-8?q?y:=20create=20'people=20and=20permissions'=20section=20in=20'co?= =?UTF-8?q?nfiguration=20and=20modules'.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- modules/system/system.module | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'modules/system') diff --git a/modules/system/system.module b/modules/system/system.module index d3c48da1e..845e7b496 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -112,8 +112,8 @@ function system_help($path, $arg) { case 'admin/appearance/settings': return '

' . t('These options control the default display settings for your entire site, across all themes. Unless they have been overridden by a specific theme, these settings will be used.') . '

'; case 'admin/config/modules': - $output = '

' . t('Modules are plugins that extend Drupal\'s core functionality. To further extend your site\'s functionality, a number of contributed modules are available for download.', array('@permissions' => url('admin/settings/permissions'), '@modules' => 'http://drupal.org/project/modules')) . '

'; - $output .= '

' . t('Module-related tasks can be located on the administration by module page. New module-related permissions may also become available as new modules are enabled.', array('@by-module' => url('admin/by-module'), '@permissions' => url('admin/settings/permissions'))) . '

'; + $output = '

' . t('Modules are plugins that extend Drupal\'s core functionality. To further extend your site\'s functionality, a number of contributed modules are available for download.', array('@permissions' => url('admin/config/people/permissions'), '@modules' => 'http://drupal.org/project/modules')) . '

'; + $output .= '

' . t('Module-related tasks can be located on the administration by module page. New module-related permissions may also become available as new modules are enabled.', array('@by-module' => url('admin/by-module'), '@permissions' => url('admin/config/people/permissions'))) . '

'; $output .= '

' . t('Each time a module is updated, it is important that update.php is run. To help manage the update process, the Update status module, if enabled, provides information on new versions of modules (and themes) as they are released. Regular review of the available updates page is essential to maintaining a secure and current site.', array('@update-php' => $base_url . '/update.php', '@updates' => url('admin/reports/updates'))) . '

'; return $output; case 'admin/config/modules/uninstall': @@ -2244,7 +2244,7 @@ function system_get_module_admin_tasks($module) { $admin_task_count = 0; // Check for permissions. if (in_array($module, module_implements('permission')) && $admin_access) { - $admin_tasks[-1] = l(t('Configure permissions'), 'admin/settings/permissions', array('fragment' => 'module-' . $module)); + $admin_tasks[-1] = l(t('Configure permissions'), 'admin/config/people/permissions', array('fragment' => 'module-' . $module)); } // Check for menu items that are admin links. -- cgit v1.2.3