diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 641696b5d40e..47914f0b12ba 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -74,7 +74,7 @@ Drupal 7.0, xxxx-xx-xx (development version) to time zone names, e.g. Africa/Abidjan. * In some cases the upgrade and install scripts do not choose the preferred site default time zone. The automatically-selected time zone can be - corrected at admin/settings/date-time. + corrected at admin/config/regional/settings. * If your site is being upgraded from Drupal 6 and you do not have the contributed date or event modules installed, user time zone settings will fallback to the system time zone and will have to be reconfigured by each user. diff --git a/modules/block/block.module b/modules/block/block.module index 803c477fe44d..55f34ac2b08a 100644 --- a/modules/block/block.module +++ b/modules/block/block.module @@ -18,7 +18,7 @@ function block_help($path, $arg) { switch ($path) { case 'admin/help#block': $output = '
' . t('Blocks are boxes of content rendered into an area, or region, of a web page. The default theme Garland, for example, implements the regions "left sidebar", "right sidebar", "content", "header", and "footer", and a block may appear in any one of these areas. The blocks administration page provides a drag-and-drop interface for assigning a block to a region, and for controlling the order of blocks within regions.', array('@blocks' => url('admin/structure/block'))) . '
'; - $output .= '' . t('Although blocks are usually generated automatically by modules (like the User login block, for example), administrators can also define custom blocks. Custom blocks have a title, description, and body. The body of the block can be as long as necessary, and can contain content supported by any available text format.', array('@text-format' => url('admin/settings/filter'))) . '
'; + $output .= '' . t('Although blocks are usually generated automatically by modules (like the User login block, for example), administrators can also define custom blocks. Custom blocks have a title, description, and body. The body of the block can be as long as necessary, and can contain content supported by any available text format.', array('@text-format' => url('admin/config/content/formats'))) . '
'; $output .= '' . t('When working with blocks, remember that:') . '
'; $output .= '' . t('This page lets you set up your site-wide contact form. To do so, add one or more categories. You can associate different recipients with each category to route e-mails to different people. For example, you can route website feedback to the webmaster and direct product information requests to the sales department. On the settings page, you can customize the information shown above the contact form. This can be useful to provide additional contact information such as your postal address and telephone number.', array('@settings' => url('admin/structure/contact/settings'), '@form' => url('contact'))) . '
'; if (!module_exists('menu')) { - $menu_note = t('The menu item can be customized and configured only once the menu module has been enabled.', array('@modules-page' => url('admin/settings/modules'))); + $menu_note = t('The menu item can be customized and configured only once the menu module has been enabled.', array('@modules-page' => url('admin/config/modules'))); } else { $menu_note = ''; diff --git a/modules/help/help.api.php b/modules/help/help.api.php index 17962a63a0da..7c7f05cf8baf 100644 --- a/modules/help/help.api.php +++ b/modules/help/help.api.php @@ -46,7 +46,7 @@ * $output .= 'A role defines a group of users that have certain * privileges as defined in %permission.'; * $output = t($output, array('%permission' => l(t('user permissions'), - * 'admin/settings/permission'))); + * 'admin/config/people/permissions'))); * * For a detailed usage example, see page_example.module. */ @@ -57,8 +57,7 @@ function hook_help($path, $arg) { case 'admin/structure/block': return t('Blocks are boxes of content that may be rendered into certain regions of your web pages, for example, into sidebars. They are usually generated automatically by modules, but administrators can create blocks manually.
-If you want certain blocks to disable themselves temporarily during high server loads, check the "Throttle" box. You can configure the auto-throttle on the throttle configuration page after having enabled the throttle module.
-You can configure the behavior of each block (for example, specifying on which pages and for what users it will appear) by clicking the "configure" link for each block.
', array('@throttle' => url('admin/settings/throttle'))); +You can configure the behavior of each block (for example, specifying on which pages and for what users it will appear) by clicking the "configure" link for each block.
'); } } diff --git a/modules/help/help.module b/modules/help/help.module index 525b173a78d9..e8a3c7389a12 100644 --- a/modules/help/help.module +++ b/modules/help/help.module @@ -40,7 +40,7 @@ function help_help($path, $arg) { case 'admin/help': $output = '' . t('Please follow these steps to set up and start using your website:') . '
'; $output .= '' . t('The content translation module allows content to be translated into different languages. Working with the locale module (which manages enabled languages and provides translation for the site interface), the content translation module is key to creating and maintaining translated site content.', array('@locale' => url('admin/help/locale'))) . '
'; $output .= '' . t('Configuring content translation and translation-enabled content types:') . '
'; $output .= '' . t('Working with translation-enabled content types:') . '
'; $output .= '' . t("The Update status module periodically checks for new versions of your site's software (including contributed modules and themes), and alerts you to available updates.") . '
'; - $output .= '' . t('The report of available updates will alert you when new releases are available for download. You may configure options for update checking frequency and notifications at the Update status module settings page.', array('@update-report' => url('admin/reports/updates'), '@update-settings' => url('admin/settings/updates'))) . '
'; + $output .= '' . t('The report of available updates will alert you when new releases are available for download. You may configure options for update checking frequency and notifications at the Update status module settings page.', array('@update-report' => url('admin/reports/updates'), '@update-settings' => url('admin/reports/updates/settings'))) . '
'; $output .= '' . t('Please note that in order to provide this information, anonymous usage statistics are sent to drupal.org. If desired, you may disable the Update status module from the module administration page.', array('@modules' => url('admin/config/modules'))) . '
'; $output .= '' . t('For more information, see the online handbook entry for Update status module.', array('@update' => 'http://drupal.org/handbook/modules/update')) . '
'; return $output; @@ -428,7 +428,7 @@ function update_mail($key, &$message, $params) { } $message['body'][] = t('See the available updates page for more information:', array(), array('langcode' => $langcode)) . "\n" . url('admin/reports/updates', array('absolute' => TRUE, 'language' => $language)); - $settings_url = url('admin/settings/updates', array('absolute' => TRUE)); + $settings_url = url('admin/reports/updates/settings', array('absolute' => TRUE)); if (variable_get('update_notification_threshold', 'all') == 'all') { $message['body'][] = t('Your site is currently configured to send these emails when any updates are available. To get notified only for security updates, please visit !url.', array('!url' => $settings_url)); }