diff options
author | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-09-13 01:07:23 +0000 |
---|---|---|
committer | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-09-13 01:07:23 +0000 |
commit | ead8b35e264d34fd832d69e19416be05774d486c (patch) | |
tree | 116f9ffec182af9abedd66a1d8c149835e418fd5 | |
parent | faf41d262f5280cfb31729959b5cfdfb06dcb2a4 (diff) | |
download | brdo-ead8b35e264d34fd832d69e19416be05774d486c.tar.gz brdo-ead8b35e264d34fd832d69e19416be05774d486c.tar.bz2 |
#83234 by robertDouglass. Cache the right thing for path lookups.
-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 557503e1f..a6fc4ee9d 100644 --- a/includes/path.inc +++ b/includes/path.inc @@ -72,7 +72,7 @@ function drupal_lookup_path($action, $path = '') { return $src; } else { - $map[$path] = $path; + $map[$path] = FALSE; } } } |