From 2607f6e698a1ec1b1a4dfbc4b3479581ed10c7ea Mon Sep 17 00:00:00 2001 From: Dries Buytaert <dries@buytaert.net> Date: Sat, 9 Sep 2006 11:06:53 +0000 Subject: [PATCH] - Patch #83234 by rDouglass: fixed caching glitch. --- includes/path.inc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/includes/path.inc b/includes/path.inc index bc11198b426b..557503e1f119 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; + } } } } -- GitLab