Skip to content
Snippets Groups Projects
Commit f95577fe authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #779362 by ksenzee, dereine: drupal_match_path() is unreadable.

parent df52ebb7
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -362,7 +362,20 @@ function drupal_match_path($path, $patterns) { ...@@ -362,7 +362,20 @@ function drupal_match_path($path, $patterns) {
$regexps = &drupal_static(__FUNCTION__); $regexps = &drupal_static(__FUNCTION__);
if (!isset($regexps[$patterns])) { if (!isset($regexps[$patterns])) {
$regexps[$patterns] = '/^(' . preg_replace(array('/(\r\n?|\n)/', '/\\\\\*/', '/(^|\|)\\\\<front\\\\>($|\|)/'), array('|', '.*', '\1' . preg_quote(variable_get('site_frontpage', 'node'), '/') . '\2'), preg_quote($patterns, '/')) . ')$/'; // Convert path settings to a regular expression.
// Therefore replace newlines with a logical or, /* with asterisks and the <front> with the frontpage.
$to_replace = array(
'/(\r\n?|\n)/', // newlines
'/\\\\\*/', // asterisks
'/(^|\|)\\\\<front\\\\>($|\|)/' // <front>
);
$replacements = array(
'|',
'.*',
'\1' . preg_quote(variable_get('site_frontpage', 'node'), '/') . '\2'
);
$patterns_quoted = preg_quote($patterns, '/');
$regexps[$patterns] = '/^(' . preg_replace($to_replace, $replacements, $patterns_quoted) . ')$/';
} }
return (bool)preg_match($regexps[$patterns], $path); return (bool)preg_match($regexps[$patterns], $path);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment