From cf1b85c8c7ae2a98dfc741196301e57be4b06289 Mon Sep 17 00:00:00 2001 From: mikeytown2 Date: Mon, 28 Feb 2011 14:03:23 -0800 Subject: [PATCH] Issue #1069922 by mikeytown2: Fix Boost installation profile issues. --- boost.module | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/boost.module b/boost.module index 78d99ea..9c4d1d2 100644 --- a/boost.module +++ b/boost.module @@ -319,7 +319,9 @@ function boost_transform_url($url = NULL, $b_path = NULL) { $parts['args'] = $args; // Get content type. - $parts = _boost_get_menu_router($parts); + if (!empty($parts['normal_path'])) { + $parts = _boost_get_menu_router($parts); + } // See if url is cacheable. $parts = boost_is_cacheable($parts); $items[$hash] = $parts; -- 1.7.4.1