diff options
Diffstat (limited to 'includes/path.inc')
-rw-r--r-- | includes/path.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/path.inc b/includes/path.inc index 8f2939c33..fd1e3448d 100644 --- a/includes/path.inc +++ b/includes/path.inc @@ -233,5 +233,5 @@ function drupal_match_path($path, $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, '/')) . ')$/'; } - return preg_match($regexps[$patterns], $path); + return (bool)preg_match($regexps[$patterns], $path); } |