summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2006-09-09 11:06:53 +0000
committerDries Buytaert <dries@buytaert.net>2006-09-09 11:06:53 +0000
commit2607f6e698a1ec1b1a4dfbc4b3479581ed10c7ea (patch)
tree9576e84edb6705d358a79ce1956ed83fba6b4f8a /includes
parent35c33e3cf5b61fbf226116cb881f5e38c3a5103b (diff)
downloadbrdo-2607f6e698a1ec1b1a4dfbc4b3479581ed10c7ea.tar.gz
brdo-2607f6e698a1ec1b1a4dfbc4b3479581ed10c7ea.tar.bz2
- Patch #83234 by rDouglass: fixed caching glitch.
Diffstat (limited to 'includes')
-rw-r--r--includes/path.inc3
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;
+ }
}
}
}