summaryrefslogtreecommitdiff
path: root/includes/path.inc
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-06-18 06:59:11 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-06-18 06:59:11 +0000
commitd0c9795c338ed0ccf5c71270c13b43b0e2cfe2e1 (patch)
tree9b2be29f906f045c48de9ad08a77594a4db32729 /includes/path.inc
parent64707c09e9ae2eb6a388c2c3c081c848555cc2b3 (diff)
downloadbrdo-d0c9795c338ed0ccf5c71270c13b43b0e2cfe2e1.tar.gz
brdo-d0c9795c338ed0ccf5c71270c13b43b0e2cfe2e1.tar.bz2
#150049 by Moshe Weitzman: empower custom url rewriting with url() options
Diffstat (limited to 'includes/path.inc')
-rw-r--r--includes/path.inc8
1 files changed, 3 insertions, 5 deletions
diff --git a/includes/path.inc b/includes/path.inc
index 9efee799a..898b39048 100644
--- a/includes/path.inc
+++ b/includes/path.inc
@@ -110,9 +110,6 @@ function drupal_get_path_alias($path, $path_language = '') {
if ($alias = drupal_lookup_path('alias', $path, $path_language)) {
$result = $alias;
}
- if (function_exists('custom_url_rewrite')) {
- $result = custom_url_rewrite('alias', $result, $path, $path_language);
- }
return $result;
}
@@ -133,8 +130,9 @@ function drupal_get_normal_path($path, $path_language = '') {
if ($src = drupal_lookup_path('source', $path, $path_language)) {
$result = $src;
}
- if (function_exists('custom_url_rewrite')) {
- $result = custom_url_rewrite('source', $result, $path, $path_language);
+ if (function_exists('custom_url_rewrite_inbound')) {
+ // Modules may alter the inbound request path by reference.
+ custom_url_rewrite_inbound($result, $path, $path_language);
}
return $result;
}