From af2a5123b5753f78d50a73fffcfc2462a293488c Mon Sep 17 00:00:00 2001 From: mark_story Date: Tue, 21 Dec 2010 23:14:17 -0500 Subject: [PATCH] Fixing issue where prefixes would not be correctly loaded for a request. --- cake/libs/router.php | 1 + 1 file changed, 1 insertion(+) diff --git a/cake/libs/router.php b/cake/libs/router.php index ac0ae9d50..2cd9128b4 100644 --- a/cake/libs/router.php +++ b/cake/libs/router.php @@ -711,6 +711,7 @@ class Router { public static function reload() { if (empty(self::$_initialState)) { self::$_initialState = get_class_vars('Router'); + self::_setPrefixes(); return; } foreach (self::$_initialState as $key => $val) {