From 690bbac89651c7bf7a0f9105d27df114e25060f8 Mon Sep 17 00:00:00 2001 From: Alex Pott Date: Tue, 11 Aug 2015 09:19:45 +0100 Subject: [PATCH] Issue #2548907 by nlisgo: Typo in 'Fast 404 pages' section of default.settings.php --- sites/default/default.settings.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sites/default/default.settings.php b/sites/default/default.settings.php index 9ad5cae550b9..e3e76ad569b0 100644 --- a/sites/default/default.settings.php +++ b/sites/default/default.settings.php @@ -610,15 +610,15 @@ if ($settings['hash_salt']) { * * The options below return a simple, fast 404 page for URLs matching a * specific pattern: - * - $conf['system.performance]['fast_404']['exclude_paths']: A regular + * - $conf['system.performance']['fast_404']['exclude_paths']: A regular * expression to match paths to exclude, such as images generated by image * styles, or dynamically-resized images. If you need to add more paths, you * can add '|path' to the expression. - * - $conf['system.performance]['fast_404']['paths']: A regular expression to + * - $conf['system.performance']['fast_404']['paths']: A regular expression to * match paths that should return a simple 404 page, rather than the fully * themed 404 page. If you don't have any aliases ending in htm or html you * can add '|s?html?' to the expression. - * - $conf['system.performance]['fast_404']['html']: The html to return for + * - $conf['system.performance']['fast_404']['html']: The html to return for * simple 404 pages. * * Remove the leading hash signs if you would like to alter this functionality.