diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-09-09 11:06:53 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-09-09 11:06:53 +0000 |
commit | 2607f6e698a1ec1b1a4dfbc4b3479581ed10c7ea (patch) | |
tree | 9576e84edb6705d358a79ce1956ed83fba6b4f8a /includes | |
parent | 35c33e3cf5b61fbf226116cb881f5e38c3a5103b (diff) | |
download | brdo-2607f6e698a1ec1b1a4dfbc4b3479581ed10c7ea.tar.gz brdo-2607f6e698a1ec1b1a4dfbc4b3479581ed10c7ea.tar.bz2 |
- Patch #83234 by rDouglass: fixed caching glitch.
Diffstat (limited to 'includes')
-rw-r--r-- | includes/path.inc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/includes/path.inc b/includes/path.inc index bc11198b4..557503e1f 100644 --- a/includes/path.inc +++ b/includes/path.inc @@ -71,6 +71,9 @@ function drupal_lookup_path($action, $path = '') { $map[$src] = $path; return $src; } + else { + $map[$path] = $path; + } } } } |