Index: modules/filter.module =================================================================== RCS file: /cvs/drupal/drupal/modules/Attic/filter.module,v retrieving revision 1.122.2.4 diff -u -p -r1.122.2.4 filter.module --- modules/filter.module 18 Oct 2006 20:14:42 -0000 1.122.2.4 +++ modules/filter.module 13 Dec 2006 13:50:46 -0000 @@ -43,11 +43,11 @@ function filter_help($section) { case 'admin/filters/'. arg(2): return t('

Every filter performs one particular change on the user input, for example stripping out malicious HTML or making URLs clickable. Choose which filters you want to apply to text in this input format.

-

If you notice some filters are causing conflicts in the output, you can rearrange them.

', array('%rearrange' => url('admin/filters/'. arg(2) .'/order'))); +

If you notice some filters are causing conflicts in the output, you can rearrange them.

', array('%rearrange' => check_url(url('admin/filters/'. arg(2) .'/order')))); case 'admin/filters/'. arg(2) .'/configure': return t(' -

If you cannot find the settings for a certain filter, make sure you\'ve enabled it on the view tab first.

', array('%url' => url('admin/filters/'. arg(2)))); +

If you cannot find the settings for a certain filter, make sure you\'ve enabled it on the view tab first.

', array('%url' => check_url(url('admin/filters/'. arg(2))))); case 'admin/filters/'. arg(2) .'/order': return t(' Index: modules/system.module =================================================================== RCS file: /cvs/drupal/drupal/modules/Attic/system.module,v retrieving revision 1.320.2.15 diff -u -p -r1.320.2.15 system.module --- modules/system.module 12 Dec 2006 21:49:13 -0000 1.320.2.15 +++ modules/system.module 13 Dec 2006 13:49:20 -0000 @@ -41,7 +41,7 @@ function system_help($section) { case 'admin/themes/settings/'. arg(3): $reference = explode('.', arg(3), 2); $theme = array_pop($reference); - return t('

These options control the display settings for the %template theme. When your site is displayed using this theme, these settings will be used. By clicking "Reset to defaults," you can choose to use the global settings for this theme.

', array('%template' => $theme, '%global' => url('admin/themes/settings'))); + return t('

These options control the display settings for the %template theme. When your site is displayed using this theme, these settings will be used. By clicking "Reset to defaults," you can choose to use the global settings for this theme.

', array('%template' => check_plain($theme), '%global' => url('admin/themes/settings'))); case 'admin/modules': return t('

Modules are plugins for Drupal that extend its core functionality. Here you can select which modules are enabled. Click on the name of the module in the navigation menu for their individual configuration pages. Once a module is enabled, new permissions might be made available. Modules can automatically be temporarily disabled to reduce server load when your site becomes extremely busy by enabling the throttle.module and checking throttle. The auto-throttle functionality must be enabled on the throttle configuration page after having enabled the throttle module.

It is important that update.php is run every time a module is updated to a newer version.

', array('%permissions' => url('admin/access/permissions'), '%throttle' => url('admin/settings/throttle'), '%update-php' => $base_url .'/update.php'));